Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Pre vs Post Metrics by Cohort
00:00
5 left

Pre vs Post Metrics by Cohort

MediumSQL · PostgreSQL

Problem

Write a SQL query to compare pre- and post-launch metrics by cohort using CTEs and joins.

Use the provided cohort assignments and metric observations. Treat observations from the 30 days before launch as pre-launch and observations from launch through the following 29 days as post-launch.

Output

  1. One row per valid cohort, with cohort_month, pre_avg_metric, post_avg_metric, absolute_change, and percent_change.
  2. Include cohorts without post-launch observations, using NULL for unavailable comparison values.
  3. Round metric averages, absolute changes, and percentage changes to two decimal places. Order by cohort_month ascending.

Schema

cohort_assignments
ColumnTypeDescription
user_idPKINTUnique user identifier
cohort_monthDATEMonth assigned to the user cohort
launch_dateDATELaunch date applicable to the user's cohort
user_metrics
ColumnTypeDescription
metric_idPKINTUnique metric observation identifier
user_idINTUser associated with the observation
metric_dateDATEDate of the metric observation
metric_valueDECIMAL(10,2)Observed metric value
Tablescohort_assignmentsuser_metrics
Interviewer

Your question is Pre vs Post Metrics by Cohort. 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.