Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Conversion Rate with Rolling Average
00:00
5 left

SQL Conversion Rate with Rolling Average

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate monthly campaign conversion rate by channel, including a rolling 3-month average.

Use the provided campaigns and campaign_events tables. Treat unique visitors with an impression event as reached and unique visitors with a conversion event as converted. Include calendar months with no activity and treat their conversion rate as 0.

Output

  1. One row per channel and calendar month.
  2. Columns: channel, month, conversion_rate, and rolling_3_month_avg.
  3. Rates are percentages rounded to two decimal places. Include the current month and preceding two calendar months in the rolling average.
  4. Order by channel ascending, then month ascending.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
campaign_nameVARCHAR(100)Campaign name
channelVARCHAR(50)Marketing channel associated with the campaign
campaign_events
ColumnTypeDescription
event_idPKINTUnique event identifier
campaign_idINTReferenced campaign
visitor_idINTVisitor associated with the event
event_typeVARCHAR(30)Event classification, such as impression or conversion
event_dateDATEDate the event occurred
Tablescampaignscampaign_events
Interviewer

Your question is SQL Conversion Rate with Rolling Average. 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.