From 0ed1e13e4a50f3722e8584136cc444acbf40cf91 Mon Sep 17 00:00:00 2001 From: daviddoji Date: Mon, 13 Apr 2026 13:15:52 +0000 Subject: [PATCH] automated commit by check50 [check50=True] --- 10.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/10.sql b/10.sql index e69de29..b50d273 100644 --- a/10.sql +++ b/10.sql @@ -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;