Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

MQL Month-over-Month Growth

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

Your question is MQL Month-over-Month Growth. 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

Snowflake Marketing Analytics wants to monitor marketing-qualified lead performance across campaign channels. Write a PostgreSQL query that reports monthly MQL volume and month-over-month growth for active Snowflake campaigns from January through March 2025.

Requirements

  1. Join campaigns to leads and count only leads whose status is MQL and whose campaign is active.
  2. Return one row for every active, non-null campaign channel in each month, including months with zero MQLs.
  3. Use a window function to calculate growth against the previous calendar month. Return NULL when the previous count is zero or unavailable.
  4. Return the month as YYYY-MM, the channel, MQL count, and growth percentage rounded to two decimals. Sort by channel and month.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
campaign_nameVARCHAR(100)Snowflake campaign name
channelVARCHAR(50)Marketing acquisition channel
is_activeBOOLEANWhether the campaign is active
leads
ColumnTypeDescription
lead_idPKINTUnique lead identifier
campaign_idINTCampaign associated with the lead
lead_created_atDATEDate the lead was created
lead_statusVARCHAR(30)Lead lifecycle status
Tablescampaignsleads
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results