Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Min and Max Without Subqueries
00:00
5 left

SQL Min and Max Without Subqueries

MediumSQL · PostgreSQL

Problem

GEP's people analytics team needs a quick salary-extremes report for its workforce data. Write a PostgreSQL query to identify every employee whose non-null salary is either the highest or lowest in the employees table, without using subqueries or CTEs.

Requirements

  1. Return the employee ID, employee name, salary, and a salary_type label.
  2. Label rows as Highest or Lowest.
  3. Return all employees tied at either salary extreme.
  4. Exclude employees whose salary is NULL, and order the result from highest salary to lowest salary.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
departmentVARCHAR(80)GEP department
salaryNUMERIC(12,2)Annual employee salary
Tablesemployees
Interviewer

Your question is SQL Min and Max Without Subqueries. 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.