CS143: SQL Query (3)

Window function Case function ORDER BY and FETCH FIRST SQL data modi cations Null and three-valued logic Outer join Bag semantics SQL expressive power Window Function Query 1: Per each result row, return a student’s name, their GPA, and the overall GPA average { Q: Will this work? SELECT name, GPA, AVG(GPA) FROM Student ................
................