Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Weekly Conversions by Channel
00:00
5 left

SQL for Weekly Conversions by Channel

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate weekly campaign conversions, spend, and conversion rate by channel for Direct Agents.

Use the campaigns and campaign_metrics tables. Conversion rate is conversions divided by clicks, expressed as a percentage. Ignore metric records that do not match a campaign.

Output

  1. One row per week and channel, with week_start, channel, conversions, spend, and conversion_rate.
  2. Include weeks represented by matching campaign metrics, order by week_start ascending and channel ascending.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTEGERUnique campaign identifier
campaign_nameVARCHAR(100)Direct Agents campaign name
channelVARCHAR(50)Marketing channel
campaign_metrics
ColumnTypeDescription
metric_idPKINTEGERUnique campaign metric record
campaign_idINTEGERCampaign associated with the metric record
metric_dateDATEDate on which performance was recorded
clicksINTEGERNumber of attributed clicks
conversionsINTEGERNumber of attributed conversions
spendNUMERIC(12,2)Campaign spend for the metric date
Tablescampaignscampaign_metrics
Interviewer

Your question is SQL for Weekly Conversions by Channel. 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.