3 lines
178 B
SQL
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%";
|