Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Window Functions for Top Users
00:00
5 left

Window Functions for Top Users

MediumSQL · PostgreSQL

Problem

LexisNexis Legal & Professional wants to understand engagement with Lexis+. Write a PostgreSQL query that identifies the three users with the greatest total session duration within each region.

Requirements

  1. Join users to sessions and calculate each user's total positive session duration in seconds.
  2. Exclude users whose region is unknown and sessions with zero or NULL duration.
  3. Rank users independently within each region using a window function. Break duration ties by ascending user_id, and return only ranks 1 through 3.
  4. Return the region, user ID, user name, total duration, and regional rank, ordered by region and rank.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User display name
regionVARCHAR(50)User geographic region
sessions
ColumnTypeDescription
session_idPKINTUnique session identifier
user_idINTUser associated with the session
session_duration_secondsINTSession duration in seconds
Tablesuserssessions
Interviewer

Your question is Window Functions for Top Users. 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.