Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Cohort Retention From Driving Frequency

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

Your question is Cohort Retention From Driving Frequency. 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

Arity wants to understand whether driving frequency is associated with driver retention. Write a PostgreSQL query using completed trips to assign each driver to a first-trip cohort and a driving-frequency segment.

Requirements

  1. Define each driver's cohort as the month of their first completed trip.
  2. Count completed trips during the first 60 days after that first trip. Classify drivers with at least two trips as Frequent, and others as Occasional.
  3. For each cohort, segment, and month offset 0 through 2, return cohort size, retained drivers, and the retention rate. Month 0 is the cohort month.
  4. Exclude cancelled trips and drivers without a completed trip. Order by cohort month, segment, and month offset.

Schema

drivers
ColumnTypeDescription
driver_idPKINTUnique Arity driver identifier
driver_nameVARCHAR(100)Driver display name
signup_dateDATEDate the driver joined Arity
trips
ColumnTypeDescription
trip_idPKINTUnique trip identifier
driver_idINTDriver associated with the trip
trip_dateDATECalendar date of the trip
trip_statusVARCHAR(20)Trip lifecycle status
Tablesdriverstrips
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results