Back to Editor

Solution: 2. First 10 Videos by Publish Date

Easy

Problem Detail:

Write a SQL query to show the first 10 videos based on published_at. Return title and published_at.

Answer SQL Query:

SELECT title, published_at
FROM videos
ORDER BY published_at
LIMIT 10;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!