Back to Editor

Solution: 1. Channel Names and Subscribers

Easy

Problem Detail:

Write a SQL query to display the channel_name and subscriber_count for all channels.

Answer SQL Query:

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