Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Selecting n-th row
21. Practice 2
Summary

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;