Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Aggregate Monthly Transaction Data
00:00
5 left

Aggregate Monthly Transaction Data

MediumSQL · PostgreSQL

Problem

Write a query to aggregate monthly transaction data.

Use the provided transaction and account data. Include only posted transactions with a non-null transaction date, and report results by calendar month and account type.

Output

  1. One row per month and account type, with columns month, account_type, transaction_count, total_amount, and average_amount.
  2. Format month as YYYY-MM and order by month chronologically, then account type alphabetically.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
account_idINTAccount associated with the transaction
transaction_dateDATEDate the transaction occurred
amountDECIMAL(12,2)Transaction amount
statusVARCHAR(20)Transaction processing status
accounts
ColumnTypeDescription
account_idPKINTUnique account identifier
account_typeVARCHAR(30)Account classification
opened_dateDATEDate the account was opened
Tablestransactionsaccounts
Interviewer

Your question is Aggregate Monthly Transaction Data. 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.