3 lines
151 B
SQL
3 lines
151 B
SQL
-- list the season number of, and title of, the first episode of every season.
|
|
SELECT "season", "title" FROM "episodes" WHERE "episode_in_season" = 1;
|