Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

4th Lowest Salary Employee

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

Your question is 4th Lowest Salary Employee. 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

Afiniti’s compensation analytics team needs to identify employees at the fourth-lowest salary level among active employees. Write a PostgreSQL query that returns every employee tied at that salary level, along with the department name when available.

Requirements

  1. Consider only active employees with non-NULL salaries.
  2. Rank distinct salary values from lowest to highest using a window function.
  3. Return all employees with rank 4, including ties, and preserve employees whose department reference has no match.
  4. Return results in ascending employee_id order.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee full name
salaryNUMERIC(10,2)Annual employee salary
employment_statusVARCHAR(20)Current employment status
department_idINTEGERReferenced department identifier
departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
department_nameVARCHAR(100)Department name
Tablesemployeesdepartments
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results