Back to Editor

Solution: 11. Total Number of Channels

Easy

Problem Detail:

Write a SQL query to count the total number of rows in the channels table.

Answer SQL Query:

SELECT COUNT(*) AS total_channels
FROM channels;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!