bot50
2026-04-13 13:28:47 +00:00
commit e042f9c7e2
13 changed files with 28 additions and 0 deletions

2
10.sql Normal file
View File

@@ -0,0 +1,2 @@
-- write a SQL query to list the ids, titles, and production codes of all episodes. Order the results by production code, from earliest to latest.
SELECT "id", "title", "production_code" FROM "episodes" ORDER BY "production_code" ASC;