Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second-Highest Salary SQL

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

Your question is Second-Highest Salary 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

Airtel engineering leadership wants a salary benchmark alongside department-level workforce statistics. Write a PostgreSQL query that identifies the second-highest distinct salary and returns it with aggregated statistics for every Airtel department.

Requirements

  1. Use a window function to find the second-highest distinct non-NULL salary and count how many employees earn it.
  2. Return every department, including departments with no employees, using a LEFT JOIN.
  3. For each department, calculate total employees, active employees, and average salary rounded to two decimal places.
  4. Order the result by department_id ascending.

Schema

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