Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Spend With Window Functions

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

Your question is Rolling Spend With Window Functions. 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

The American Express cardmember analytics team needs a monthly view of spending trends for active cardmembers. Write a PostgreSQL query that calculates a rolling three-month average of monthly spend for each active cardmember.

Requirements

  1. Join cardmembers to monthly_card_spend using cardmember_id.
  2. Include only cardmembers whose status is exactly active.
  3. Treat a NULL monthly spend as zero, then calculate the average of the current month and up to the two preceding months for each cardmember using a window function.
  4. Return results in cardmember and chronological month order.

Schema

cardmembers
ColumnTypeDescription
cardmember_idPKINTEGERUnique cardmember identifier
cardmember_nameVARCHAR(100)Cardmember display name
statusVARCHAR(20)Current cardmember account status
monthly_card_spend
ColumnTypeDescription
spend_idPKINTEGERUnique monthly spend record
cardmember_idINTEGERReferences cardmembers.cardmember_id
spend_monthDATEFirst day of the spend month
monthly_spendNUMERIC(12,2)Total cardmember spend for the month
Tablescardmembersmonthly_card_spend
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results