Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Third Largest

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

Your question is SQL: Third Largest. 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

Xccelerated needs a salary benchmark for its active software engineering team. Write a PostgreSQL query to find the third-highest distinct annual salary among active Software Engineers whose department is present.

Requirements

  1. Join employees to departments to include the department name.
  2. Consider only employees with role = 'Software Engineer', employment_status = 'active', and a non-NULL salary.
  3. Rank distinct salary values from highest to lowest using a window function, then return every employee tied at the third-highest salary.
  4. Return employee_id, employee_name, department_name, annual_salary, and the rank, ordered by employee_id.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
roleVARCHAR(100)Employee job role
employment_statusVARCHAR(20)Current employment status
annual_salaryNUMERIC(12,2)Annual salary amount
department_idINTReferenced department identifier
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