Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Conversion Rates by Channel

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

Your question is Compare Conversion Rates by Channel. Start with the requirements and the one table 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

Rippling’s growth team wants to compare signup conversion performance across acquisition channels for a recent campaign. Write a SQL query to calculate conversion rates by channel using a single event table.

Requirements

  1. For each channel, count how many users had a visit event.
  2. Count how many users had a signup event.
  3. Return channel, visits, signups, and conversion_rate where conversion_rate = signups / visits.
  4. Exclude rows where channel is NULL.
  5. Order results by conversion_rate descending, then channel ascending.

Schema

rippling_growth_events
ColumnTypeDescription
event_idPKINTUnique event row ID
user_idINTUser identifier
channelVARCHAR(50)Acquisition channel associated with the event
event_typeVARCHAR(20)Event type such as visit or signup
event_dateDATEDate the event occurred
Tablesrippling_growth_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results