Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Employees With Window Functions
00:00
5 left

Rank Employees With Window Functions

MediumSQL · PostgreSQL

Problem

Write a SQL query using a window function to rank employees by sales within each department.

Use the provided employee and sales data. Calculate each employee's total sales, include employees with no sales, and assign the same rank to employees tied on total sales.

Output

  1. One row per employee with employee_id, employee_name, department, total_sales, and sales_rank.
  2. Sort by department, rank, employee name, and employee ID.

Schema

employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee's full name
departmentVARCHAR(100)Employee department
sales
ColumnTypeDescription
sale_idPKINTUnique sale identifier
employee_idINTEmployee credited with the sale
sale_amountNUMERIC(12,2)Amount of the sale
Tablesemployeessales
Interviewer

Your question is Rank Employees With 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.