Instruction
Ok, how about some practice?
Exercise
Use DENSE_RANK() and for each game, show name, size and the rank in terms of its size.
Stuck? Here's a hint!
Here's the example from the previous exercise – use it to write the correct answer:
SELECT name, platform, editor_rating, DENSE_RANK() OVER(ORDER BY editor_rating) FROM game;



