automated commit by check50 [check50=True]
This commit is contained in:
1
1.sql
1
1.sql
@@ -1 +1,2 @@
|
||||
-- write a SQL query to list the titles of all episodes in Cyberchase’s original season, Season 1.
|
||||
SELECT "title" FROM "episodes" WHERE "season" = 1;
|
||||
|
||||
1
2.sql
1
2.sql
@@ -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
1
3.sql
@@ -1 +1,2 @@
|
||||
-- find the production code for the episode “Hackerized!”.
|
||||
SELECT "production_code" FROM "episodes" WHERE "title" = "Hackerized!";
|
||||
|
||||
Reference in New Issue
Block a user