IMY Learning
Back to Questions

1. Channel Names and Subscribers

Solution ↗
Easy
Tables: channels
+-------------------------+-------------+
| Column Name             | Type        |
+-------------------------+-------------+
| channel_id              | varchar     |
| channel_name            | varchar     |
| subscriber_count        | bigint      |
| view_count              | bigint      |
+-------------------------+-------------+
channels contains one row per YouTube channel.
channel_id is the primary key for this table.
Write a SQL query to display the channel_name and subscriber_count for all channels.
Hint
Tip: Use a simple projection from one table.
Input:
channels table:
+------------+------------------+------------------+------------+
| channel_id | channel_name     | subscriber_count | view_count |
+------------+------------------+------------------+------------+
| C101       | Alpha Tech       | 2500000          | 92000000   |
| C102       | Data With Mira   | 1800000          | 71000000   |
| C103       | SQL Zone         | 950000           | 40000000   |
+------------+------------------+------------------+------------+
Output:
Output:
+----------------+------------------+
| channel_name   | subscriber_count |
+----------------+------------------+
| Alpha Tech     | 2500000          |
| Data With Mira | 1800000          |
| SQL Zone       | 950000           |
+----------------+------------------+
Explanation:

The query selects only the requested columns from the channels table.

SQL Editor
Click "Run SQL" to execute the query and see results here.
About Us Contact Us Privacy Policy Terms & Conditions
© 2026 IMY Learning. All rights reserved.