Instruction
Perfect! Another exercise is waiting for you.
Exercise
Show the name, platform and update date of the second most recently updated game.
Stuck? Here's a hint!
Here is the example from earlier to help you build the query:
WITH ranking AS (
SELECT
name,
RANK() OVER(ORDER BY editor_rating DESC) AS rank
FROM game
)
SELECT
name
FROM ranking
WHERE rank = 2;



