AnalystPath

Podcast Episodes Missing a Transcript

SQLEasyJunior level~15 min

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_idtitlehostrelease_yeartranscript_score
1Tides of IndustryMaya R.19254.5
2Quiet EnginesLeo Park1960
3Garden of SignalsAna Vora18134.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

Related SQL questions