Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Top Users

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

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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results