Back to Editor

Solution: 12. Total Number of Videos

Easy

Problem Detail:

Write a SQL query to count the total number of videos in the videos table.

Answer SQL Query:

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