Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Retention and Drop-Off

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

Your question is Rolling Retention and Drop-Off. 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

Intuit wants to evaluate user retention and identify where customers drop out of a product funnel. Write a PostgreSQL query using the users and product_events tables.

Requirements

  1. Group users by the month of signup_date.
  2. Calculate rolling retention rates for activity within 7, 14, and 30 days after signup. Use the signup cohort as the denominator.
  3. For each cohort, report users reaching connect_account, create_budget, and view_insights within 30 days.
  4. Calculate each funnel step's conversion rate from the cohort and its drop-off rate from the immediately preceding step. Return the largest drop-off steps first within each cohort.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
acquisition_channelVARCHAR(30)Marketing channel associated with signup
product_events
ColumnTypeDescription
event_idPKINTUnique product event identifier
user_idINTUser associated with the event
event_nameVARCHAR(50)Name of the product event
occurred_atTIMESTAMPTimestamp when the event occurred
Tablesusersproduct_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results