3 lines
94 B
SQL
3 lines
94 B
SQL
-- count the number of unique episode titles.
|
|
SELECT COUNT(DISTINCT "title") FROM "episodes";
|