Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Conversion Rates by Channel
00:00
5 left

Compare Conversion Rates by Channel

EasySQL · PostgreSQL

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
Interviewer

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