Q&A
Course Info
Curriculum
Get Started
1 / 3
What clause divides rows into groups for independent window function calculations?
SELECT
user_id,
RANK()
OVER
(
course_name
ORDER
BY
score
DESC)
AS
rank
FROM
course_scores;
PARTITION BY
GROUP BY
ORDER BY
FILTER BY
CLUSTER BY
Previous
Confirm