Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Login Days SQL
00:00
5 left

Consecutive Login Days SQL

MediumSQL · PostgreSQL

Problem

Given a user activity table, write a query to find consecutive days of logins.

Treat multiple logins by the same user on one calendar date as a single login day. Return only streaks containing at least two consecutive calendar days.

Output

  1. One row per user login streak.
  2. Columns: user_id, streak_start, streak_end, and consecutive_days.
  3. Sort by user_id, then streak_start ascending.

Schema

user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTIdentifier of the user who logged in
login_atTIMESTAMPTimestamp when the login activity occurred
Tablesuser_activity
Interviewer

Your question is Consecutive Login Days SQL. 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.