Find Employees Who Earn More Than Their Department Average
SQL coding challenge · Difficulty: medium · Topic: Subquery · +100 XP
Problem
A compensation analyst wants to find employees who earn above their own department's average — high performers who are strong candidates for promotion.
Tables
Table: departments
| department_id | department_name | | --- | --- | | 1 | Engineering | | 2 | Marketing | | 3 | HR | | 4 | Finance |
Table: employees
| employee_id | first_name | department_id | salary | hire_date | manager_id | | --- | --- | --- | --- | --- | --- | | 1 | Alice | 1 | 90000 | 2021-03-10 | NULL | | 2 | Bob | 1 | 75000 | 2021-03-20 | 1 | | 3 | Charlie | 1 | 80000 | 2021-03-25 | 1 | | 4 | Victor | 1 | 65000 | 2022-01-15 | 1 | | 5 | Diana | 2 | 70000 | 2022-06-05 | 1 | | 6 | Eve | 2 | 65000 | 2021-11-15 | 5 | | 7 | Frank | 3 | 60000 | 2023-02-28 | 1 |
Expected Output
| employee_id | first_name | salary | department_id | | --- | --- | --- | --- | | 1 | Alice | 90000 | 1 | | 3 | Charlie | 80000 | 1 | | 5 | Diana | 70000 | 2 |
- Return:
employee_id,first_name,salary,department_id - Only employees earning above their own department's average
- Sort by
salarydescending - Hint: Use a correlated subquery:
WHERE salary > (SELECT AVG(salary) FROM employees e2 WHERE e2.department_id = e1.department_id)
What this SQL challenge teaches you
“Find Employees Who Earn More Than Their Department Average” is a medium-level SQL challenge focused on Subquery. Working through it gives you hands-on practice with Correlated Subquery, AVG, WHERE, Self-reference — the kind of transformation you are asked to write in real data engineering work and in technical interviews. You can solve it directly in the browser: the dataset is pre-loaded, so you write the query or DataFrame code, run it, and compare your output against the expected result immediately.
Concepts covered
- Correlated Subquery
- AVG
- WHERE
- Self-reference
How to approach it
If you get stuck, work through these steps in order before looking at a full solution — each one narrows the problem down:
- Your result should return: employee_id, first_name, salary, department_id.
- Order the output salary descending.
- Use a correlated subquery: WHERE salary > (SELECT AVG(salary) FROM employees e2 WHERE e2.department_id = e1.department_id)
- Compare your output to the Expected Output — the columns, values and row order must match exactly.
Where this comes up
Variations of this problem have been reported in interviews at Amazon, Google, Databricks, Microsoft. Interviewers use it to check whether you can express the logic cleanly and reason about correctness on edge cases such as ties, nulls and empty groups.
How to practise it on PySpark.in
Open the challenge, write your SQL query in the editor and press Run to execute it against the sample dataset. Submitting checks your output against every test case, including hidden ones, so you find out straight away whether your logic holds up. You can retry as often as you like, and each solved challenge adds to your XP.
Related SQL challenges
- Top 3 Products per Category
- Running Total Revenue
- Find Duplicate Emails
- Median Salary per Department
- Second Highest Salary
- Latest Order Per Customer
Frequently asked questions
Do I need to install Spark or a database to solve this?
No. The SQL environment runs in your browser with the sample data already loaded, so there is nothing to install or configure.
Is this challenge free?
Yes - the problem, the sample dataset, the hints and unlimited test runs are free.
What level is it?
It is rated medium and covers Subquery.