Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Salary Threshold Query
00:00
5 left

SQL Salary Threshold Query

EasySQL · PostgreSQL

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
Interviewer

Your question is SQL Salary Threshold Query. Start with the requirements and the two tables 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.