Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Users Per Region Query

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

Your question is Top Users Per Region Query. 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

LinkedIn's Business Intelligence team wants to identify the most active members in each geographic region. Write a PostgreSQL query that counts member interactions and ranks members within their region.

Requirements

  1. Join users to user_interactions and count interactions per member.
  2. Exclude members whose region is unknown and members with no recorded interactions.
  3. Return the top five members in each region, including ties only when they fall within the first five row numbers.
  4. Order the output by region, activity rank, and member ID.

Schema

users
ColumnTypeDescription
user_idPKINTUnique LinkedIn member identifier
display_nameVARCHAR(100)Member display name
regionVARCHAR(50)Member reporting region
user_interactions
ColumnTypeDescription
interaction_idPKINTUnique interaction identifier
user_idINTMember who generated the interaction
interaction_typeVARCHAR(50)Interaction category
occurred_atTIMESTAMPInteraction timestamp
Tablesusersuser_interactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results