Back to Editor

Solution: 9. Embeddable Videos

Easy

Problem Detail:

Write a SQL query to display all videos that are embeddable.

Answer SQL Query:

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