automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 12:46:16 +00:00
parent 39e88a12d8
commit 7fb0a06f49
4 changed files with 5 additions and 0 deletions

1
1.sql
View File

@@ -1 +1,2 @@
-- write a SQL query to list the titles of all episodes in Cyberchases original season, Season 1.
SELECT "title" FROM "episodes" WHERE "season" = 1;

1
2.sql
View File

@@ -1 +1,2 @@
-- list the season number of, and title of, the first episode of every season.
SELECT "season", "title" FROM "episodes" WHERE "episode_in_season" = 1;

1
3.sql
View File

@@ -1 +1,2 @@
-- find the production code for the episode “Hackerized!”.
SELECT "production_code" FROM "episodes" WHERE "title" = "Hackerized!";

2
5.sql
View File

@@ -0,0 +1,2 @@
-- find the title of the holiday episode that aired on December 31st, 2004.
SELECT "title" FROM "episodes" WHERE "air_date" = "2004-12-31";