Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Cohort Retention with SQL

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

Your question is Cohort Retention with SQL. 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

Business Context

SparkBeyond wants to compare how users acquired in different months continue using the SparkBeyond platform. A qualifying activity is an insight_generated event on any SparkBeyond surface.

Task

Write a PostgreSQL query that calculates monthly retention by signup cohort and compares each cohort's retention rate with the previous cohort for the same lifecycle month.

Requirements

  1. Derive each user's monthly cohort from users.signup_at.
  2. Count each user at most once per cohort and lifecycle month, even if they generate multiple events.
  3. Return the cohort month, lifecycle month number, cohort size, retained users, and retention percentage.
  4. Use a LAG window function to show the prior cohort's retention percentage and the percentage-point difference.
  5. Include qualifying activity only from insight_generated events, exclude activity before signup, and sort chronologically.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_atTIMESTAMPTimestamp when the user joined SparkBeyond
product_events
ColumnTypeDescription
event_idPKINTUnique product event identifier
user_idINTUser who generated the event
event_atTIMESTAMPTimestamp when the event occurred
event_nameVARCHAR(40)Name of the SparkBeyond product event
surfaceVARCHAR(40)SparkBeyond surface where the event occurred
Tablesusersproduct_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results