Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 5 Salaries SQL

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

Your question is Top 5 Salaries SQL. 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

Tavant's ignio staffing dashboard needs a salary view for workforce planning. Write a PostgreSQL query that returns employees earning one of the five highest distinct salaries among active employees.

Requirements

  1. Use a window function to rank distinct salary levels from highest to lowest.
  2. Return every active employee whose salary is in the top five salary bands, including ties.
  3. Include the employee name, department name, salary, and salary rank. Preserve employees whose department is missing or unmatched.
  4. Exclude inactive employees and employees with a NULL salary. Order the result by salary descending and employee name ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTEGERReferenced department identifier
salaryNUMERIC(10,2)Annual employee salary
employment_statusVARCHAR(20)Current employment status
departments
ColumnTypeDescription
department_idPKINTEGERUnique 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