Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Average Salary by Department

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

Your question is SQL: Average Salary by Department. 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

TripJack's People Analytics team needs a department-level salary report for workforce planning. Write a PostgreSQL query that calculates the average salary for each department, but returns only departments with more than five employees.

Requirements

  1. Join employees to departments using the department relationship.
  2. Return the department name, employee count, and average salary.
  3. Include only departments whose employee count is greater than 5, using an aggregate filter.
  4. Sort the result alphabetically by department name. PostgreSQL's AVG should naturally ignore NULL salary values.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
office_locationVARCHAR(100)Primary office location
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
first_nameVARCHAR(80)Employee first name
emailVARCHAR(150)Employee work email
department_idINTAssigned department identifier
salaryNUMERIC(10,2)Annual salary in Indian rupees
Tablesdepartmentsemployees
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results