automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 12:55:57 +00:00
parent 3f34ca94a9
commit e520e00101

2
6.sql
View File

@@ -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%";