Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Average Transactions SQL

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

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

Airtel Payments Bank wants to monitor short-term transaction activity for active users. Write a PostgreSQL query that calculates a 7-day rolling average of each user's daily transaction count.

The rolling window should include the current transaction date and the preceding six calendar days. Average only the dates present in the daily transaction data, rather than treating missing dates as zero-transaction days.

Requirements

  1. Include only users whose account_status is active.
  2. Aggregate multiple transactions for the same user and date into one daily_transactions value.
  3. Use a window function partitioned by user and ordered by transaction date.
  4. Return user_id, full_name, transaction_date, daily_transactions, and rolling_7_day_average, ordered by user and date.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Airtel Payments Bank user identifier
full_nameVARCHAR(100)User's full name
account_statusVARCHAR(20)Current account status
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
user_idINTEGERUser associated with the transaction
transaction_dateDATECalendar date of the transaction
amountNUMERIC(12,2)Transaction amount
Tablesuserstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results