Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Daily Rolling Average Balance
00:00
5 left

Daily Rolling Average Balance

MediumSQL · PostgreSQL

Problem

Given a table of account balances, write a query to calculate the daily rolling average balance for each user.

For this exercise, calculate each user's average balance for the current date and the preceding two calendar days. If multiple balance records exist on one date, first determine that user's daily average. Ignore NULL balances.

Output

  1. One row per user and balance date, with user_id, balance_date, daily_average_balance, and rolling_average_balance.
  2. Include every user-date with a balance record, ordered by user_id and balance_date.

Schema

account_balances
ColumnTypeDescription
balance_idPKINTUnique identifier for the balance record
user_idINTIdentifier of the account owner
balance_dateDATEDate on which the balance was recorded
balanceNUMERIC(12,2)Account balance recorded for the user
Tablesaccount_balances
Interviewer

Your question is Daily Rolling Average Balance. Start with the requirements and the one table in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.