Solution: 4. Public Videos
Easy
Problem Detail:
Write a SQL query to return video_id, title, and privacy_status for all public videos.
Answer SQL Query:
SELECT video_id, title, privacy_status FROM videos WHERE privacy_status = 'public';
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!