Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Use Window Functions
00:00
5 left

Use Window Functions

MediumSQL · PostgreSQL

Problem

How do you use window functions in SQL?

Using the provided employees and departments tables, write a PostgreSQL query that demonstrates this by ranking active employees by salary within their department.

Output

  1. One row per active employee, with department_id, department_name, employee_name, salary, and salary_rank.
  2. Employees with equal salaries share the same rank.
  3. Include employees whose department has no matching department record.
  4. Order by department name ascending with unmatched departments last, then salary descending and employee ID ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee name
department_idINTReferenced department identifier
salaryNUMERIC(10,2)Annual employee salary
statusVARCHAR(20)Employment status
hire_dateDATEEmployee hire date
departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
Tablesemployeesdepartments
Interviewer

Your question is Use Window Functions. 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.