Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Window Functions Running Total

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

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

Quadrint analysts need a product-level revenue trend for a reporting surface such as the Mission Operations Dashboard. Write a PostgreSQL query that summarizes completed sales by product and day, then calculates each product's running revenue total.

Requirements

  1. Include only sales with sale_status = 'completed' and matching products.
  2. Aggregate multiple sales for the same product and date into daily_revenue.
  3. Use a window function partitioned by product and ordered chronologically to calculate running_total.
  4. Treat NULL sale amounts as zero for the daily aggregation, and sort the final output by product name and date.

Schema

products
ColumnTypeDescription
product_idPKINTEGERUnique product identifier
product_nameVARCHAR(120)Quadrint product name
lifecycle_statusVARCHAR(20)Current product lifecycle status
sales
ColumnTypeDescription
sale_idPKINTEGERUnique sale identifier
product_idINTEGERProduct associated with the sale
sale_dateDATEDate on which the sale occurred
amountNUMERIC(12,2)Revenue amount
sale_statusVARCHAR(20)Sale processing status
Tablesproductssales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results