Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second Highest Value SQL
00:00
5 left

Second Highest Value SQL

EasySQL · PostgreSQL

Problem

Write a query to find the second highest value in a specific column.

Use employee_compensation.annual_salary as the target column and treat duplicate salary values as one distinct value. Return NULL if fewer than two distinct non-NULL salary values exist.

Output

  1. Return one row with one column named second_highest_salary.
  2. Return the second distinct highest value from annual_salary.

Schema

employee_compensation
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee name
annual_salaryDECIMAL(12,2)Annual salary amount
Tablesemployee_compensation
Interviewer

Your question is Second Highest Value SQL. 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.