Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Window Function for Employee Ranking
00:00
5 left

Window Function for Employee Ranking

MediumSQL · PostgreSQL

Problem

How would you use a window function to rank employees by performance within each department at Kpmg Us?

Use the provided employee and performance review data. Calculate each active employee's average performance score from reviews dated in 2025, excluding employees without a department or valid score.

Output

  1. One row per qualifying employee with department_name, employee_name, average_performance, and performance_rank.
  2. Tied average scores must receive the same rank.
  3. Order by department, rank ascending, and employee ID ascending.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee full name
department_nameVARCHAR(50)Employee department
is_activeBOOLEANWhether the employee is currently active
performance_reviews
ColumnTypeDescription
review_idPKINTUnique performance review identifier
employee_idINTEmployee associated with the review
review_dateDATEDate the review was recorded
performance_scoreDECIMAL(5,2)Performance score for the review
Tablesemployeesperformance_reviews
Interviewer

Your question is Window Function for Employee Ranking. 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.