Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Top Advisors by Region

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

Your question is Rank Top Advisors by Region. 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

Edward Jones wants to identify the strongest financial advisors in each region based on new clients acquired during 2025. Write a PostgreSQL query that includes advisors with no qualifying acquisitions and returns the top three advisors per region.

Requirements

  1. Count each advisor's clients acquired from 2025-01-01 through 2025-12-31.
  2. Use a LEFT JOIN so advisors with zero new clients remain eligible.
  3. Rank advisors within each region by acquisition count descending, breaking ties by advisor ID ascending.
  4. Return only the top three advisors per region, ordered by region and rank.

Schema

advisors
ColumnTypeDescription
advisor_idPKINTEGERUnique financial advisor identifier
advisor_nameVARCHAR(100)Financial advisor name
regionVARCHAR(50)Edward Jones operating region
clients
ColumnTypeDescription
client_idPKINTEGERUnique client identifier
advisor_idINTEGERAdvisor assigned to the client
acquired_dateDATEDate the client was acquired
Tablesadvisorsclients
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results