Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Signup Cohorts by Retention
00:00
5 left

Compare Signup Cohorts by Retention

HardSQL · PostgreSQL

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
Interviewer

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