Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Window Functions Running Total
00:00
5 left

Window Functions Running Total

MediumSQL · PostgreSQL

Problem

Samba TV's measurement team wants to monitor cumulative sales associated with active advertising campaigns. Write a PostgreSQL query that aggregates sales by campaign and date, then calculates a chronological running total for each active campaign.

Requirements

  1. Include only campaigns whose status is active.
  2. Aggregate sales_amount by campaign and sale_date, treating missing or null sales amounts as zero.
  3. Calculate a separate running total for each campaign, ordered by sale date.
  4. Include active campaigns with no sales, and sort the final output by campaign name and sale date.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
campaign_nameVARCHAR(100)Samba TV campaign name
statusVARCHAR(20)Campaign lifecycle status
advertiserVARCHAR(100)Advertiser associated with the campaign
campaign_sales
ColumnTypeDescription
sale_idPKINTUnique sales record identifier
campaign_idINTReferenced campaign identifier
sale_dateDATEDate on which the sale was attributed
sales_amountNUMERIC(12,2)Attributed sales amount
sourceVARCHAR(30)Attribution source
Tablescampaignscampaign_sales
Interviewer

Your question is Window Functions Running Total. 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.