Back to Editor

Solution: 28. Channels with Very High Video Count

Medium

Problem Detail:

Write a SQL query to find channels where video_count is greater than 100000.

Answer SQL Query:

SELECT channel_name, video_count
FROM channels
WHERE video_count > 100000
ORDER BY video_count DESC;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!