diff --git a/11.sql b/11.sql index e69de29..0f2005b 100644 --- a/11.sql +++ b/11.sql @@ -0,0 +1,2 @@ +-- list the titles of episodes from season 5, in reverse alphabetical order. +SELECT "title" FROM "episodes" WHERE "season" = 5 ORDER BY "title" ASC;