Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Pre/Post Launch Cohort Comparison
00:00
5 left

Pre/Post Launch Cohort Comparison

MediumSQL · PostgreSQL

Problem

Given a table of user events, write a SQL query to compare pre- and post-launch metrics by cohort.

Use 2025-01-15 as the launch timestamp, with 30-day pre-launch and post-launch windows. Define cohorts by the month of each user's signup date. Metrics are total events and distinct active users.

Output

  1. One row per signup cohort, including cohorts with no events in either window.
  2. Columns: cohort_month, pre_event_count, post_event_count, pre_active_users, post_active_users, and event_count_pct_change.
  3. Calculate percentage change from pre-launch to post-launch, return NULL when the pre-launch count is zero, and order by cohort_month ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
user_events
ColumnTypeDescription
event_idPKINTUnique event identifier
user_idINTUser associated with the event
event_timeTIMESTAMPTimestamp when the event occurred
event_nameVARCHAR(50)Name of the recorded event
Tablesusersuser_events
Interviewer

Your question is Pre/Post Launch Cohort Comparison. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.