Back to Editor

Solution: 5. HD Videos

Easy

Problem Detail:

Write a SQL query to list all videos that have definition = 'hd'.

Answer SQL Query:

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