Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Active Days Detection
00:00
5 left

Consecutive Active Days Detection

MediumSQL · PostgreSQL

Problem

Given a table of user activity logs, write a query to identify users who had consecutive active days of website building on GoDaddy.

Filter activity to website_building events and ignore rows with a NULL user_id or activity_type. Include every streak of at least three consecutive calendar days.

Output

  1. One row per qualifying user streak with user_id, streak_start, streak_end, and consecutive_days
  2. Order by user_id, then streak_start ascending

Schema

user_activity_logs
ColumnTypeDescription
log_idPKINTEGERUnique activity log identifier
user_idINTEGERGoDaddy user identifier
activity_dateDATECalendar date of the activity
activity_typeVARCHAR(50)Type of user activity
Tablesuser_activity_logs
Interviewer

Your question is Consecutive Active Days Detection. 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.