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

Sales Funnel SQL Analysis

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze Synthesia sales funnel performance by stage, including conversion rates and drop-off between stages.

Use the provided funnel stage definitions and stage history records. Calculate metrics across all defined stages, including stages with no recorded opportunities.

Output

  1. One row per funnel stage, ordered by stage_order ascending.
  2. Columns: stage_name, stage_count, conversion_rate, and dropoff_rate.
  3. The first stage has a 100% conversion rate and 0% drop-off. Return NULL when a rate cannot be calculated because the preceding stage has zero opportunities.

Schema

funnel_stages
ColumnTypeDescription
stage_idPKINTUnique funnel stage identifier
stage_nameVARCHAR(50)Name of the Synthesia sales funnel stage
stage_orderINTSequential position of the stage in the funnel
opportunity_stage_history
ColumnTypeDescription
history_idPKINTUnique stage history record identifier
opportunity_idINTIdentifier of the sales opportunity
stage_idINTFunnel stage reached by the opportunity
entered_atDATEDate when the opportunity entered the stage
Tablesfunnel_stagesopportunity_stage_history
Interviewer

Your question is Sales 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.