Get startedGet started for free

Paging events

There are exactly 666 unique events in the Summer Medals Olympics dataset. If you want to chunk them up to analyze them piece by piece, you'll need to split the events into groups of approximately equal size.

This exercise is part of the course

PostgreSQL Summary Stats and Window Functions

View Course

Exercise instructions

  • Split the distinct events into exactly 111 groups, ordered by event in alphabetical order.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

WITH Events AS (
  SELECT DISTINCT Event
  FROM Summer_Medals)
  
SELECT
  --- Split up the distinct events into 111 unique groups
  ___,
  ___ OVER (ORDER BY ___ ASC) AS Page
FROM Events
ORDER BY Event ASC;
Edit and Run Code