Solution: 29. Videos Published in 2024
Medium
Problem Detail:
Write a SQL query to list all videos published in the year 2024.
Answer SQL Query:
SELECT video_id, title, published_at FROM videos WHERE YEAR(published_at) = 2024;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!