Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Employees Within Departments

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

Your question is Rank Employees Within Departments. 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

Revature wants a salary ranking for active employees across its internal departments. Write a PostgreSQL query that returns each qualifying employee with their department, salary, and salary rank within that department.

Requirements

  1. Join employees to departments and include only employees assigned to a valid department.
  2. Include only employees whose employment_status is Active and whose salary is not NULL.
  3. Use RANK() so employees with equal salaries receive the same rank, and order the results by department name, salary descending, and employee ID.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
department_idINTReferences departments.department_id
salaryNUMERIC(10,2)Annual employee salary
employment_statusVARCHAR(20)Employee status such as Active or Inactive
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