Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Highest Without Aggregates

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

Your question is Second Highest Without Aggregates. Start with the requirements and the one table 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

AvidXchange wants to review compensation bands by department. Write a PostgreSQL query to find the second highest distinct salary in each department, without using any aggregate functions such as MAX() or COUNT().

Requirements

  1. Return one row per department that has at least two distinct salaries.
  2. Find the second highest distinct salary within each department.
  3. Do not use aggregate functions in the solution.
  4. Sort the final result by department_name.

Schema

employees
ColumnTypeDescription
employee_idPKINTPrimary key for the employee
employee_nameVARCHAR(100)Employee name
department_nameVARCHAR(100)Department name
salaryINTEmployee salary, may repeat across employees
hire_dateDATEEmployee hire date
Tablesemployees
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results