Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Consecutive Login Activity

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

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

Ameriprise wants to identify sustained engagement with its client digital experience. Given client login events, write a PostgreSQL query that finds each client's consecutive calendar-day login streaks.

Requirements

  1. Treat multiple logins by the same client on one calendar date as a single active day.
  2. Return every streak of at least two consecutive days, including the client ID, client name, start date, end date, and streak length.
  3. Exclude login records with a missing client ID or login date, and sort results by client ID and streak start date.

Schema

clients
ColumnTypeDescription
client_idPKINTUnique Ameriprise client identifier
client_nameVARCHAR(100)Client display name
client_logins
ColumnTypeDescription
login_idPKINTUnique login event identifier
client_idINTClient associated with the login
login_dateDATECalendar date of client activity
Tablesclientsclient_logins
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results