Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Running Totals and Moving Averages

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

Your question is Running Totals and Moving Averages. 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

TransUnion needs a customer-level view of credit utilization trends for analytics and risk monitoring. Write a PostgreSQL query that aggregates account snapshots by month, then uses window functions to calculate cumulative and rolling utilization metrics.

Requirements

  1. Join customer records to credit utilization snapshots and exclude snapshots with a missing balance or credit limit.
  2. Calculate monthly utilization as total balance divided by total credit limit, multiplied by 100.
  3. Calculate a running utilization total and a three-month moving average for each customer, ordered chronologically.
  4. Return results ordered by customer ID and month. The moving average should use the current row and up to the two preceding available monthly rows.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer display name
credit_utilization_snapshots
ColumnTypeDescription
snapshot_idPKINTEGERUnique snapshot identifier
customer_idINTEGERCustomer associated with the snapshot
snapshot_dateDATEDate when the balance and limit were recorded
balanceNUMERIC(12,2)Outstanding revolving balance
credit_limitNUMERIC(12,2)Total reported credit limit
Tablescustomerscredit_utilization_snapshots
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results