Back to Editor

Solution: 7. Channels with Hidden Subscriber Count

Easy

Problem Detail:

Write a SQL query to find channels where hidden_subscriber_count is enabled.

Answer SQL Query:

SELECT channel_id, channel_name, hidden_subscriber_count
FROM channels
WHERE hidden_subscriber_count = 'true';
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!