Podcast Episodes Missing a Transcript
Problem
A podcast platform stores one row per episode. The transcript_score column holds an accuracy rating once a transcript has been produced, and is NULL while an episode still has no transcript. Find every episode that has not been transcribed yet (transcript_score IS NULL). Return episode_id, title, host and release_year, ordered by episode_id.
Tables
Example rows — the live problem includes the full dataset.
episodes
| episode_id | title | host | release_year | transcript_score |
|---|---|---|---|---|
| 1 | Tides of Industry | Maya R. | 1925 | 4.5 |
| 2 | Quiet Engines | Leo Park | 1960 | |
| 3 | Garden of Signals | Ana Vora | 1813 | 4.8 |
Expected output
Your answer should return 3 rows with the columns episode_id, title, host, release_year.
Starter code (SQL)
SELECT *
FROM episodes;Solve this SQL question free
Write SQL and run it instantly in your browser — even on your phone. No signup needed to try.
Solution & explanation
Create a free account to unlock the optimal solution, a step-by-step explanation, and the hidden test cases that grade your answer.
Sign up free to unlock