Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Execution and Query Shape
00:00
5 left

SQL Execution and Query Shape

MediumSQL · PostgreSQL

Problem

How does a SQL query usually look like, and how is it executed?

Write a PostgreSQL query that summarizes active employees by operational department, then explain how PostgreSQL processes the query logically and executes it physically.

Output

  1. One row per qualifying department.
  2. Columns: department_name, active_employee_count, and avg_active_salary.
  3. Include operational departments with at least two active employees and an average active salary of at least 70000.
  4. Order by average salary descending, then department name ascending.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
is_operationalBOOLEANWhether the department is operational
employees
ColumnTypeDescription
employee_idPKINTUnique employee identifier
employee_nameVARCHAR(100)Employee name
department_idINTEmployee department identifier
statusVARCHAR(20)Employment status
salaryNUMERIC(12,2)Annual salary
Tablesdepartmentsemployees
Interviewer

Your question is SQL Execution and Query Shape. 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.