Back to Editor

Solution: 16. Average Subscriber Count

Easy

Problem Detail:

Write a SQL query to find the average value of subscriber_count across all channels.

Answer SQL Query:

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