Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Salary Threshold Query

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

Your question is SQL Salary Threshold Query. 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

Fortitude Systems uses the Workforce Hub to review employee compensation. Write a PostgreSQL query that identifies employees whose salary is equal to or greater than 10,000.

Requirements

  1. Return the employee ID, first name, last name, salary, and department name.
  2. Include employees even when their department is missing or does not match a department record. Display Unassigned for those employees.
  3. Return results in descending salary order, using first name ascending to break salary ties.

Schema

employees
ColumnTypeDescription
employee_idPKINTEGERUnique employee identifier
first_nameVARCHAR(50)Employee first name
last_nameVARCHAR(50)Employee last name
department_idINTEGERReferences departments.department_id
salaryNUMERIC(10,2)Annual employee salary
departments
ColumnTypeDescription
department_idPKINTEGERUnique 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