Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Activity Days Query
00:00
5 left

Consecutive Activity Days Query

MediumSQL · PostgreSQL

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
Interviewer

Your question is Consecutive Activity Days Query. 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.