diff --git a/6.sql b/6.sql index 594de06..58c9dd6 100644 --- a/6.sql +++ b/6.sql @@ -1,2 +1,2 @@ -- 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%"; +SELECT "title" FROM "episodes" WHERE "season" = 6 AND "air_date" LIKE "2007%";