Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Trends

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

Your question is Window Functions for Trends. 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

Write a query to calculate a running total or a moving average using window functions.

Use the provided account and transaction data. Calculate both metrics for each transaction, ordered chronologically within each account. Include transactions with no associated account.

Output

  1. One row per transaction, with account_id, account_name, transaction_date, amount, running_total, and moving_average
  2. The moving average must use the current transaction and up to the two preceding transactions for the same account
  3. Order by account_id ascending with NULL account IDs last, then transaction_date and transaction_id ascending

Schema

accounts
ColumnTypeDescription
account_idPKINTUnique account identifier
account_nameVARCHAR(100)Account display name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
account_idINTAssociated account identifier
transaction_dateDATETransaction posting date
amountNUMERIC(10,2)Transaction amount
Tablesaccountstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results