Back to Editor

Solution: 6. Videos with Captions

Easy

Problem Detail:

Write a SQL query to find all videos where captions are available.

Answer SQL Query:

SELECT video_id, title, caption
FROM videos
WHERE caption = 'true';
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!