automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 13:12:26 +00:00
parent cded6648a5
commit 609c58b7b3

2
9.sql
View File

@@ -0,0 +1,2 @@
-- write a query that counts the number of episodes released in Cyberchases first 6 years, from 2002 to 2007, inclusive.
SELECT COUNT("title") FROM "episodes" WHERE "air_date" BETWEEN "2002-01-01" AND "2007-12-31";