Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Consecutive Activity Days Query

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

Your question is Consecutive Activity Days Query. Start with the requirements and the one table 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

Given a table of user interactions, write a query to find consecutive days of website activity using SQL window functions.

Return activity streaks containing at least two consecutive calendar days. Multiple interactions by the same user on one date should count as one active day, and rows with a missing interaction date should be excluded.

Output

  1. One row per user streak with user_id, start_date, end_date, and consecutive_days.
  2. Include streaks with at least two days.
  3. Order by user_id, then start_date ascending.

Schema

user_interactions
ColumnTypeDescription
interaction_idPKINTUnique identifier for the interaction
user_idINTIdentifier of the website user
interaction_dateDATECalendar date on which the interaction occurred
interaction_typeVARCHAR(30)Type of website interaction
Tablesuser_interactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results