Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Window Ranking Query

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

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

OsborneKlein supports compensation analysis for Ameriprise teams. Write a PostgreSQL query that ranks employees by salary within their department and returns employees in the top three salary ranks.

Requirements

  1. Join employees to departments to display the department name.
  2. Use a window function partitioned by department to rank salaries from highest to lowest.
  3. Return every employee whose salary rank is 1, 2, or 3. Tied salaries must share the same rank, so ties may produce more than three employees in a department.
  4. Exclude employees without a matching department and sort the final output by department, salary descending, and employee ID.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferences departments.department_id
salaryNUMERIC(12,2)Annual employee salary
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department display name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results