Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Transactions with Window Functions
00:00
5 left

Rank Transactions with Window Functions

MediumSQL · PostgreSQL

Problem

Write a query using window functions to rank customer transactions by date within each account.

Use the provided account and transaction data. Include only transactions associated with a known account, and assign the same rank to transactions sharing a date.

Output

  1. One row per included transaction with account_id, customer_id, transaction_id, transaction_date, and transaction_rank.
  2. Order by account, transaction date ascending with null dates last, then transaction ID.
  3. Rank independently within each account.

Schema

accounts
ColumnTypeDescription
account_idPKINTUnique account identifier
customer_idINTCustomer associated with the account
account_typeVARCHAR(30)Type of financial account
account_statusVARCHAR(20)Current account status
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
account_idINTAccount associated with the transaction
transaction_dateDATEDate the transaction was posted
amountDECIMAL(12,2)Transaction amount
transaction_typeVARCHAR(30)Transaction classification
Tablesaccountstransactions
Interviewer

Your question is Rank Transactions with Window Functions. 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.