Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Ten Longest Active Sessions
00:00
5 left

Top Ten Longest Active Sessions

MediumSQL · PostgreSQL

Problem

Given a table of client login events, write a query to identify the top ten longest continuous active sessions. A session is continuous only when a login event is immediately followed by a logout event for the same client. Ignore events with a NULL timestamp.

Output

  1. One row per valid session with client_id, session_start, session_end, and duration_minutes.
  2. Include at most ten sessions, ordered by duration descending, then client_id ascending and session start ascending for ties.
  3. Rows with a NULL timestamp are excluded.

Schema

client_login_events
ColumnTypeDescription
event_idPKINTEGERUnique identifier for the login event
client_idVARCHAR(20)Identifier of the client generating the event
event_typeVARCHAR(30)Event action, such as login, logout, or another activity
event_timestampTIMESTAMPTimestamp when the event occurred
Tablesclient_login_events
Interviewer

Your question is Top Ten Longest Active Sessions. 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.