Files
me50/6.sql
2026-04-13 12:55:14 +00:00

3 lines
178 B
SQL

-- list the titles of episodes from season 6 (2008) that were released early, in 2007.
SELECT "title", "air_date" FROM "episodes" WHERE "season" = 6 AND "air_date" LIKE "2007%";