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 the first exercise again:

WITH Ranking AS (
  SELECT
    Name,
    RANK() OVER(ORDER BY EditorRating DESC) AS Rank
  FROM Game
)

SELECT
  Name
FROM Ranking
WHERE Rank = 2;