Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Conversion Rate by Acquisition Channel

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

Your question is Conversion Rate by Acquisition Channel. 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

BrightCart wants to measure how effectively each acquisition channel turns signups into paying customers. Write a SQL query to calculate the conversion rate by acquisition channel.

Requirements

  1. Use users as the base table so channels with zero conversions are still included.
  2. A user is considered converted if they have at least one row in subscriptions with status = 'active' or status = 'canceled'.
  3. Return one row per acquisition channel with:
    • acquisition_channel
    • total_signups
    • converted_users
    • conversion_rate_pct rounded to 2 decimal places
  4. Order the result by conversion_rate_pct descending, then acquisition_channel ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
acquisition_channelVARCHAR(50)Marketing channel that acquired the user
signup_dateDATEDate the user signed up
country_codeVARCHAR(2)User country code
subscriptions
ColumnTypeDescription
subscription_idPKINTUnique subscription record identifier
user_idINTUser associated with the subscription
start_dateDATESubscription start date
statusVARCHAR(20)Subscription lifecycle status
monthly_amountNUMERIC(10,2)Monthly subscription amount
Tablesuserssubscriptions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results