Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL: Average Salary by Department
00:00
5 left

SQL: Average Salary by Department

EasySQL · PostgreSQL

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
Interviewer

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