Files
me50/9.sql
2026-04-13 13:12:26 +00:00

3 lines
218 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 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";