Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Signup Cohorts by Retention

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

Your question is Compare Signup Cohorts by Retention. 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

StreamWave wants to compare how different signup cohorts behave after registration. Write a SQL query to measure 30-day engagement by monthly signup cohort.

Requirements

  1. Define each user's cohort as the month of their signup_date.
  2. For each cohort month, calculate:
    • total users in the cohort
    • users with at least one session_start event within 30 days of signup
    • the percentage of engaged users in the cohort
  3. Return one row per cohort month.
  4. Order results by cohort month ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
acquisition_channelVARCHAR(50)Marketing channel that acquired the user
events
ColumnTypeDescription
event_idPKINTUnique event identifier
user_idINTUser who generated the event
event_typeVARCHAR(50)Type of user event
event_dateDATEDate the event occurred
Tablesusersevents
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results