Files
me50/4.sql
2026-04-13 12:38:12 +00:00

3 lines
139 B
SQL

-- write a query to find the titles of episodes that do not yet have a listed topic.
SELECT "title" FROM "episodes" WHERE "topic" IS NULL;