Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Rider Retention by Signup Cohort

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

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

Write a PostgreSQL query to compare month-1 retention across monthly rider signup cohorts. A rider belongs to the cohort of their signup_date month, and is considered retained if they complete at least one ride in the next calendar month. Return cohort month, cohort size, retained riders, and retention rate.

Schema

riders
ColumnTypeDescription
rider_id
rider_name
signup_date
city
rides
ColumnTypeDescription
ride_id
rider_id
ride_date
status
fare_amount

What to watch for

  • Use only rides with status = 'completed'.
  • Riders with no rides must still count toward cohort size.
  • Multiple completed rides in the same retention month should count once.
  • Order results by cohort month.
Tablesridersrides
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results