Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for High-Value Rolling Window
00:00
5 left

SQL for High-Value Rolling Window

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify users who have executed more than five transactions exceeding $10,000 within a rolling 24-hour window.

Use the transactions table. Treat the 24-hour interval as inclusive of both endpoints.

Output

  1. Return one row per qualifying user with user_id, max_transactions_in_24h, and qualifying_window_end.
  2. Include only users whose maximum count exceeds five. Sort by user_id ascending.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTIdentifier of the user who executed the transaction
transaction_tsTIMESTAMPTZTimestamp when the transaction was executed
amountNUMERIC(12,2)Transaction amount in US dollars
Tablestransactions
Interviewer

Your question is SQL for High-Value Rolling Window. Start with the requirements and the one table 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.