Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Rolling Stats

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

Your question is Window Functions for Rolling Stats. 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

PwC's Halo analytics platform needs a client-level view of transaction activity for the reporting period from January 1 through February 15, 2025. Write a PostgreSQL query that aggregates daily transaction volumes, calculates a cumulative total, and computes a trailing 30-day moving average for each active client.

Requirements

  1. Join clients to client_transactions and include only active clients.
  2. Aggregate transaction volume by client and transaction date. Treat a NULL transaction volume as zero.
  3. Calculate a chronological running total for each client.
  4. Calculate the average of recorded daily volumes from the current date and preceding 29 calendar days. Dates without transactions do not contribute rows to the average.
  5. Return results ordered by client ID and transaction date.

Schema

clients
ColumnTypeDescription
client_idPKINTEGERUnique client identifier
client_nameVARCHAR(100)Client display name
segmentVARCHAR(50)Client market segment
is_activeBOOLEANWhether the client is currently active
client_transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
client_idINTEGERClient associated with the transaction
transaction_dateDATEDate on which the transaction occurred
transaction_volumeNUMERIC(14,2)Transaction volume
Tablesclientsclient_transactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results