Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 3 Longest Sessions Per User

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

Your question is Top 3 Longest Sessions Per User. 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

Anduril operators use Lattice to monitor and coordinate activity across operational surfaces. The analytics team wants to identify the longest sessions for each user.

Write a PostgreSQL query that returns the top three completed sessions for every user, ranked by session duration.

Requirements

  1. Calculate each completed session's duration in whole seconds from started_at and ended_at.
  2. Rank sessions independently for each user, with the longest sessions ranked first. Break duration ties by the smaller session_id.
  3. Return only ranks 1 through 3, including the user's name, session ID, Lattice surface, and duration.
  4. Exclude sessions with a NULL ended_at value and users without completed sessions.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
user_nameVARCHAR(100)Operator display name
session_logs
ColumnTypeDescription
session_idPKINTEGERUnique session identifier
user_idINTEGERReferences users.user_id
started_atTIMESTAMPTZSession start timestamp
ended_atTIMESTAMPTZSession end timestamp, or NULL while active
surfaceVARCHAR(80)Lattice surface used during the session
Tablesuserssession_logs
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results