Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Median and SQL on Reddit Data

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Median and SQL on Reddit Data. Start with the requirements and the two tables on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Reddit analysts want to compare the typical post performance across active communities. Write a PostgreSQL query that calculates the median post score for each qualifying community during January 2025.

Requirements

  1. Join active communities to their Reddit posts.
  2. Consider only posts created from 2025-01-01 through 2025-01-31, inclusive, and ignore posts with a NULL score.
  3. Return communities with at least three scored posts, along with the scored post count and continuous median score.
  4. Order the result alphabetically by community name.

Use PostgreSQL's percentile_cont(0.5) WITHIN GROUP (ORDER BY ...) to calculate the median. The median should be computed separately for each community, not across all Reddit posts.

Schema

reddit_communities
ColumnTypeDescription
community_idPKINTUnique Reddit community identifier
community_nameVARCHAR(100)Reddit community name
is_activeBOOLEANWhether the community is active
reddit_posts
ColumnTypeDescription
post_idPKINTUnique Reddit post identifier
community_idINTReferenced Reddit community
created_atDATEDate the post was created
scoreINTNet Reddit post score
titleTEXTPost title
Tablesreddit_communitiesreddit_posts
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results