Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Credit Products Rolling 30 Days

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

Your question is Top Credit Products Rolling 30 Days. Start with the requirements and the three 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

Argus Information & Advisory Services needs a daily view of which credit card products generate the highest settled transaction volume. Write a PostgreSQL query that calculates and ranks product volume for each reporting date.

Requirements

  1. Sum settled transaction amounts for each product during the inclusive rolling window ending on each report_date. Include transactions newer than report_date - INTERVAL '30 days' and on or before the report date.
  2. Treat products with no qualifying transactions as having volume 0.
  3. Rank products separately for each report date and return only the top three.
  4. Order by report date ascending, volume descending, and product ID ascending to make ties deterministic.

Schema

products
ColumnTypeDescription
product_idPKINTUnique credit card product identifier
product_nameVARCHAR(100)Credit card product name
card_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
product_idINTCredit card product used for the transaction
transaction_dateDATEDate on which the transaction occurred
amountNUMERIC(12,2)Transaction amount
statusVARCHAR(20)Transaction processing status
merchant_categoryVARCHAR(40)Merchant category associated with the transaction
report_dates
ColumnTypeDescription
report_datePKDATEDate for a rolling-volume snapshot
Tablesproductscard_transactionsreport_dates
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results