Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Within Sessions

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

Your question is Rank Within Sessions. 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

Rank transactions within customer sessions using a window function, given events that can arrive out of order with lagging timestamps. Asked in the SQL round stage. Candidate used ROW_NUMBER() partitioned by customer_id ordered by event_time; interviewer drilled into session boundaries and replay idempotency.

Output

  1. Return one row per valid, deduplicated transaction within a session.
  2. Include customer_id, session_id, event_id, event_time, transaction_amount, and transaction_rank.
  3. Rank earlier event_time values first within each customer session, excluding events outside session boundaries and placing tied timestamps in event_id order.
  4. Order results by customer_id, session_id, event_time, and event_id.

Schema

sessions
ColumnTypeDescription
session_idPKINTUnique customer session identifier
customer_idINTCustomer associated with the session
session_startTIMESTAMPInclusive session start timestamp
session_endTIMESTAMPInclusive session end timestamp
events
ColumnTypeDescription
event_idPKINTUnique physical event record identifier
session_idINTReferenced customer session
event_typeVARCHAR(30)Type of event
event_timeTIMESTAMPBusiness timestamp when the event occurred
ingested_atTIMESTAMPTimestamp when the event arrived in the platform
replay_keyVARCHAR(50)Logical event key used for replay deduplication
amountDECIMAL(10,2)Transaction amount
Tablessessionsevents
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results