Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Rolling Transaction Average

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

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

WEX monitors transaction activity across its Fleet One accounts to identify changes in payment volume. Write a PostgreSQL query that calculates the rolling average of daily settled transaction volume for each WEX Fleet One account.

Requirements

  1. Include only accounts whose product is WEX Fleet One and transactions with status = 'settled'.
  2. Calculate daily transaction volume as the sum of amount, treating NULL amounts as zero.
  3. Use a window function partitioned by account and ordered by transaction date to calculate the average daily volume across the current date and the preceding 29 calendar days.
  4. Return one row for each account and date with observed settled activity, ordered by account and date.

Schema

accounts
ColumnTypeDescription
account_idPKINTEGERUnique account identifier
account_nameVARCHAR(100)Business account name
product_nameVARCHAR(50)WEX product associated with the account
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
account_idINTEGERAccount associated with the transaction
transaction_dateDATETransaction settlement date
amountNUMERIC(12,2)Transaction amount
statusVARCHAR(20)Transaction status
transaction_typeVARCHAR(30)Transaction classification
Tablesaccountstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results