w3resource

SQL Exercise: List the number of employees in each department

SQL employee Database: Exercise-101 with Solution

[An editor is available at the bottom of the page to write and execute the scripts.]

101. From the following table, write a SQL query to identify departments with fewer than four employees. Return department ID, number of employees.

Sample table: employees


Sample Solution:

SELECT dep_id,
       count(*)
FROM employees
GROUP BY dep_id
HAVING count(*)<4;

Sample Output:

 dep_id | count
--------+-------
   1001 |     3
(1 row)

Explanation:

The said query in SQL that retrieves the "dep_id" column and counts the number of rows in the 'employees' table for each unique "dep_id".

The HAVING clause include only those groups where the count of rows is less than 4.

Relational Algebra Expression:

Relational Algebra Expression: List the no. of employees in each department where the no. is less than 4.

Relational Algebra Tree:

Relational Algebra Tree: List the no. of employees in each department where the no. is less than 4.

Practice Online


Sample Database: employee

employee database structure

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous SQL Exercise: Display department, grade, and number of SALESMEN.
Next SQL Exercise: List the departments where atleast 2 employees work.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/sql-exercises/employee-database-exercise/sql-employee-database-exercise-101.php