Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Queries for Ranking

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

Your question is SQL Queries for Ranking. 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

HSBC wants to review compensation among active employees across its business divisions. Write a PostgreSQL query that ranks employees within each division and returns the highest and second-highest distinct annual salaries, including ties.

Requirements

  1. Join employees to divisions and consider only active employees with a non-NULL salary.
  2. Use a window function to rank salaries independently within each division.
  3. Return all employees whose rank is 1 or 2, ordered by division, rank, and employee name.

Schema

divisions
ColumnTypeDescription
division_idPKINTUnique identifier for an HSBC business division
division_nameVARCHAR(100)Business division name
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
division_idINTReferences divisions.division_id
annual_salaryNUMERIC(12,2)Annual salary in GBP
is_activeBOOLEANWhether the employee is currently active
Tablesdivisionsemployees
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results