Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Advanced SQL for Ranking

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

Your question is Advanced SQL 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

Hinge’s analytics team wants to review the first employees associated with each product project in alphabetical order. Write a PostgreSQL query that returns the top two employees per project based on last name and then first name.

Requirements

  1. Join employees_projects to employees using employee_id.
  2. Rank employees independently within each project_id using ROW_NUMBER().
  3. Sort alphabetically by last_name, then first_name, with employee_id as a deterministic tie-breaker.
  4. Treat null names as appearing after non-null names, remove null employee mappings, and return no more than two employees per project.
  5. Prevent duplicate employee-project mappings from producing duplicate output rows.
  6. Order the final result by project and alphabetical position.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
last_nameVARCHAR(80)Employee surname
first_nameVARCHAR(80)Employee given name
salaryNUMERIC(12,2)Annual employee salary
departmentVARCHAR(80)Hinge department
employees_projects
ColumnTypeDescription
employee_idINTEGEREmployee associated with the project
project_idINTEGERHinge project identifier
Tablesemployeesemployees_projects
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results