Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Funnel Conversion Rate SQL
00:00
5 left

Funnel Conversion Rate SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the conversion rate between two stages of the funnel.

Assume the stages are signup and assessment_started. Include only non-test users, count each user once, and consider a conversion valid only when the second stage occurs after the first.

Output

  1. One row containing from_stage, to_stage, from_users, converted_users, and conversion_rate_pct
  2. Return the conversion rate as a percentage rounded to two decimal places

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
is_testBOOLEANWhether the account is a test user
funnel_events
ColumnTypeDescription
event_idPKINTUnique funnel event identifier
user_idINTUser associated with the event
stageVARCHAR(50)Funnel stage recorded by the event
event_timeTIMESTAMPTime when the funnel event occurred
Tablesusersfunnel_events
Interviewer

Your question is Funnel Conversion Rate SQL. 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.