4 lines
215 B
SQL
4 lines
215 B
SQL
-- write a SQL query to explore a question of your choice. This query should:
|
|
-- Involve at least one condition, using WHERE with AND or OR
|
|
SELECT "title" FROM "episodes" WHERE "season" = 1 AND "topic" LIKE "%and%"
|