Back to Editor

Solution: 8. Successfully Processed Videos

Easy

Problem Detail:

Write a SQL query to find all videos whose upload_status is processed.

Answer SQL Query:

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