Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Advanced SQL With Partitions

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

Your question is Advanced SQL With Partitions. 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

Meesho's People Analytics team wants a department-level view of salary equity and compensation ranges. Write a PostgreSQL query using CTEs and window functions to compare average salaries by gender and identify the second-highest distinct salary in each department.

Requirements

  1. Calculate the average non-null salary for each gender within each department.
  2. Return the gender with the higher average salary. Return Tie when the averages are equal and No gender data when no valid gender salary exists.
  3. Return the second-highest distinct salary in each department. If fewer than two distinct salaries exist, return NULL.
  4. Exclude rows with a null salary or null gender from gender comparisons, while considering all non-null salaries for salary ranking.
  5. Include departments with no employees, and order the result by department_id.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
department_idINTDepartment assigned to the employee
gender_of_employeeVARCHAR(30)Reported employee gender
salaryNUMERIC(12,2)Annual employee salary
Tablesdepartmentsemployees
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results