automated commit by check50 [check50=True]

This commit is contained in:
daviddoji
2026-04-13 13:15:52 +00:00
parent 609c58b7b3
commit 0ed1e13e4a

2
10.sql
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;