Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Window Customer Transactions
00:00
5 left

Rolling Window Customer Transactions

MediumSQL · PostgreSQL

Problem

Can you write an efficient SQL query to aggregate rolling windows of customer transaction data?

Assume the required window is 30 calendar days and only posted transactions should be included. Aggregate transactions by customer and transaction date before calculating the rolling total.

Output

  1. One row per customer and transaction date with posted activity
  2. Columns: customer_id, customer_name, transaction_date, daily_amount, and rolling_30_day_amount
  3. Order by customer_id, then transaction_date ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
segmentVARCHAR(30)Customer segment
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATECalendar date of the transaction
amountNUMERIC(12,2)Transaction amount
statusVARCHAR(20)Transaction processing status
Tablescustomerstransactions
Interviewer

Your question is Rolling Window Customer Transactions. 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.