Back to Editor

Solution: 14. Video Count by Definition

Easy

Problem Detail:

Write a SQL query to count how many videos belong to each definition.

Answer SQL Query:

SELECT definition, COUNT(*) AS total_videos
FROM videos
GROUP BY definition;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!