Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling 7-Day Transaction Average
00:00
5 left

Rolling 7-Day Transaction Average

MediumSQL · PostgreSQL

Problem

Truist analysts need to monitor short-term customer transaction activity across accounts. Write a PostgreSQL query that calculates a rolling 7-day average of each customer's daily transaction total.

Requirements

  1. Aggregate transactions by customer and transaction date before applying the window function.
  2. Calculate a calendar-based seven-day average using the current date and the preceding six days.
  3. Ignore customers without transactions and ignore NULL transaction amounts in aggregate calculations.
  4. Return results ordered by customer and transaction date.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer's display name
segmentVARCHAR(30)Customer segment
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
customer_idINTEGERReferences customers.customer_id
transaction_dateDATETransaction posting date
amountNUMERIC(12,2)Transaction amount
Tablescustomerstransactions
Interviewer

Your question is Rolling 7-Day Transaction Average. 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.