178. Rank Scores ¶ SQL 1 2 3 4SELECT score, DENSE_RANK() OVER(ORDER BY score DESC) AS `rank` FROM Scores;