Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second Highest Without Aggregates
00:00
5 left

Second Highest Without Aggregates

HardSQL · PostgreSQL

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
Interviewer

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