SQL - Advanced Window Functions
Identify the error in this query intended to calculate a running total of
points ordered by game_date:SELECT player_id, points, SUM(points) OVER (PARTITION BY player_id) ORDER BY game_date FROM game_scores;
