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

Consecutive Login Days SQL

HardSQL · PostgreSQL

Problem

How would you write a SQL solution for consecutive login days?

Write a PostgreSQL query that finds each user's longest streak of consecutive calendar days with at least one login. Multiple logins on the same day count once, and users without a valid login are excluded.

Output

  1. One row per user with at least one valid login
  2. Columns: user_id, user_name, streak_start_date, streak_end_date, and consecutive_days
  3. Return the longest streak per user, breaking ties by the latest streak_end_date
  4. Order by user_id ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User display name
login_events
ColumnTypeDescription
event_idPKINTUnique login event identifier
user_idINTUser who generated the login event
login_atTIMESTAMPTimestamp when the login occurred
Tablesuserslogin_events
Interviewer

Your question is Consecutive Login Days SQL. Start with the requirements and the two tables 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.