Solution: 19. Videos Without Comment Count
Easy
Problem Detail:
Write a SQL query to count how many videos have a missing comment_count in video_stats.
Answer SQL Query:
SELECT COUNT(*) AS videos_without_comments FROM video_stats WHERE comment_count IS NULL;
You can easily copy this solution, switch back to your editor tab, paste it, and run the SQL!