Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Second Highest Age

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

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

Incedo's employee directory needs a query that identifies employees whose age is the second-highest distinct age among active employees. Write a PostgreSQL query using the employee and team data.

Requirements

  1. Consider only employees whose employment_status is Active.
  2. Find the second-highest distinct age, excluding NULL ages.
  3. Return every active employee with that age, including employees without a matching team.
  4. Display the employee name, age, and team name. Show Unassigned when no team matches, and order results by employee name.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
ageINTEmployee age
employment_statusVARCHAR(20)Current employment status
team_idINTAssigned team identifier
teams
ColumnTypeDescription
team_idPKINTUnique team identifier
team_nameVARCHAR(100)Incedo team name
office_locationVARCHAR(100)Team office location
Tablesemployeesteams
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results