Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Rolling Transaction Average
00:00
5 left

SQL Rolling Transaction Average

MediumSQL · PostgreSQL

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
Interviewer

Your question is SQL Rolling Transaction Average. Start with the requirements and the two tables 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.