Skip to main content

Reddit Users

EasyPremium

Reddit is a social platform where users can join various communities called "subreddits". Users can subscribe to these subreddits to receive and interact with content that interests them. Each subreddit focuses on a specific topic or theme, and users can post content, comment, and upvote or downvote posts.

You can make use of the following tables:

user table:

user_idusername
integerstring

user_subreddit table:

user_idsubreddit_id
integerinteger

subreddit table:

subreddit_idname
integerstring

Write a SQL query that returns subreddits that have more than 3 users subscribed to them. The results should have the columns subreddit_name and total_users. Order the results in descending order of total users.