Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

7-Day Rolling Average With SQL

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

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

MSCI Analytics Platform monitors transaction activity to support customer-level financial analysis. Write a PostgreSQL query that calculates a 7-day rolling average transaction amount for every transaction.

Requirements

  1. Join transactions to customers to include the customer name when available.
  2. Partition calculations by customer_id.
  3. For each transaction, average amounts from the current transaction date and the preceding six calendar days. NULL amounts should be ignored by the average.
  4. Return results ordered by customer, transaction date, and transaction ID. Preserve transactions whose customer record is missing.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer's display name
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
customer_idINTEGERCustomer associated with the transaction
transaction_dateDATECalendar date of the transaction
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