Back to Editor

Solution: 10. Made for Kids Videos

Easy

Problem Detail:

Write a SQL query to list all videos where made_for_kids = 'true'.

Answer SQL Query:

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