Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Employees Within Departments
00:00
5 left

Rank Employees Within Departments

EasySQL · PostgreSQL

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
Interviewer

Your question is Rank Employees Within Departments. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.