Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Largest Value in SQL

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

Your question is Second Largest Value in 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

Newton School of Technology wants to identify active employees whose salary is the second-highest distinct salary in the organization. Write a PostgreSQL query that returns every employee tied at that salary, along with their department.

Requirements

  1. Consider only employees with employment_status = 'active' and a non-NULL salary.
  2. Rank distinct salary levels from highest to lowest, preserving ties.
  3. Return all employees with salary rank 2, including their employee ID, name, salary, and department name.
  4. Sort the output by employee_id in ascending order.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_idINTReferences departments.department_id
salaryDECIMAL(10,2)Annual employee salary
employment_statusVARCHAR(20)Current employment status
departments
ColumnTypeDescription
department_idPKINTUnique 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