Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Enrollment Funnel Drop-Off
00:00
5 left

SQL for Enrollment Funnel Drop-Off

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify patient drop-off points in a multi-stage enrollment funnel at Amgen.

Use the provided patient, enrollment status, and funnel stage data. Identify stages where fewer patients reached the stage than reached the immediately preceding stage, including the number and percentage lost.

Output

  1. One row per stage with a drop-off.
  2. Include stage_order, stage_name, patients_completed, previous_stage_completed, drop_off_count, and drop_off_rate_pct.
  3. Exclude the first stage and stages without a drop-off. Order by stage_order ascending.

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
patient_nameVARCHAR(100)Patient display name
enrollment_status
ColumnTypeDescription
enrollment_idPKINTUnique enrollment status record
patient_idINTPatient associated with the enrollment
current_stage_orderINTHighest funnel stage reached by the patient
statusVARCHAR(30)Current enrollment status
funnel_stages
ColumnTypeDescription
stage_orderPKINTSequential order of the funnel stage
stage_nameVARCHAR(100)Name of the enrollment stage
Tablespatientsenrollment_statusfunnel_stages
Interviewer

Your question is SQL for Enrollment Funnel Drop-Off. Start with the requirements and the three 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.