Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Transaction Average

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

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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results