Back to Editor

Solution: 18. Total Channel Views

Easy

Problem Detail:

Write a SQL query to calculate the total view_count across all channels.

Answer SQL Query:

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