automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 13:10:22 +00:00
parent 92fc5d8305
commit cded6648a5

3
8.sql
View File

@@ -0,0 +1,3 @@
-- write a query that counts the number of episodes released in the last 6 years, from 2018 to 2023, inclusive.
-- You might find it helpful to know you can use BETWEEN with dates, such as BETWEEN '2000-01-01' AND '2000-12-31'.
SELECT COUNT("title") FROM "episodes" WHERE "air_date" BETWEEN "2018-01-01" AND "2023-12-31";