Back to Editor

Solution: 22. Top 10 Channels by Subscribers

Medium

Problem Detail:

Write a SQL query to find the top 10 channels with the highest subscriber_count.

Answer SQL Query:

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