3 lines
139 B
SQL
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;
|