Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Collections Funnel SQL Analysis
00:00
5 left

Collections Funnel SQL Analysis

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze a collections funnel by stage, calculating conversion rates and drop-off between steps.

Use all available funnel stages and stage events. Count each account once per stage, including stages with no matching events.

Output

  1. One row per funnel stage with stage_name, entrants, previous_entrants, conversion_rate_pct, and dropoff_count
  2. Include the first stage with null prior-stage metrics
  3. Order by the defined stage sequence

Schema

funnel_stages
ColumnTypeDescription
stage_idPKINTUnique funnel stage identifier
stage_nameVARCHAR(100)Name of the collections funnel stage
stage_orderINTSequential position of the stage
collection_stage_events
ColumnTypeDescription
event_idPKINTUnique stage event identifier
account_idVARCHAR(30)Account associated with the event
stage_idINTFunnel stage reached by the account
entered_atDATEDate the account entered the stage
Tablesfunnel_stagescollection_stage_events
Interviewer

Your question is Collections Funnel SQL Analysis. 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.