Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Purchases on Consecutive Days

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

Your question is Purchases on Consecutive Days. 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

The dv01 platform team wants to identify users who return on consecutive calendar days to make completed purchases. Write a PostgreSQL query that detects these repeat-purchase patterns from transaction timestamps.

Requirements

  1. Consider only purchases with status = 'completed' and non-null user_id values.
  2. Treat multiple completed purchases on the same calendar day as one purchase day.
  3. Use a window function to identify adjacent purchase dates for each user.
  4. Return users with at least one pair of consecutive days, including the number of consecutive-day pairs and the earliest and latest dates involved.
  5. Sort by pair count descending, then user_id ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
usernameVARCHAR(100)User display name
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
user_idINTUser associated with the purchase
purchased_atTIMESTAMPTimestamp when the purchase occurred
statusVARCHAR(20)Purchase processing status
channelVARCHAR(30)Purchase origin channel
Tablesuserspurchases
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results