Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

7-Day Rolling Average Transactions

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

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

Chase fraud and customer analytics teams need a daily activity baseline for customers using Chase Checking. Write a PostgreSQL query that calculates each customer's 7-day rolling average of posted Checking transactions.

Requirements

  1. Join customers to transactions and include only active Chase customers with account_type = 'CHECKING'.
  2. Treat a NULL transaction status as POSTED, exclude explicitly reversed transactions, and aggregate transactions by customer and calendar date.
  3. Fill dates with no transactions as zero-count days between each customer's first and last qualifying transaction.
  4. Use a window function to calculate the average of the current date and up to the six preceding calendar dates.
  5. Return customer_id, customer_name, transaction_date, daily_transaction_count, and rolling_avg_7d, rounded to two decimals. Order by customer and date.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique Chase customer identifier
customer_nameVARCHAR(100)Customer display name
is_activeBOOLEANWhether the customer is currently active
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATEDate on which the transaction posted
account_typeVARCHAR(30)Account category for the transaction
statusVARCHAR(30)Transaction processing status
Tablescustomerstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results