w3resource

SQL Exercise: List the managers of department 1001 or 2001

SQL employee Database: Exercise-49 with Solution

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

49. From the following table, write a SQL query to find those managers who are in the department 1001 or 2001. Return complete information about the employees.

Sample table: employees


Pictorial Presentation:

SQL exercises on employee Database: List the managers of department 1001 or 2001

Sample Solution:

SELECT *
FROM employees
WHERE job_name = 'MANAGER'
  AND (dep_id = 1001
       OR dep_id =2001);

Sample Output:

 emp_id | emp_name | job_name | manager_id | hire_date  | salary  | commission | dep_id
--------+----------+----------+------------+------------+---------+------------+--------
  67832 | CLARE    | MANAGER  |      68319 | 1991-06-09 | 2550.00 |            |   1001
  65646 | JONAS    | MANAGER  |      68319 | 1991-04-02 | 2957.00 |            |   2001
(2 rows)

Explanation:

The provided query in SQL that selects all the columns and rows from the 'employees' table where the job_name is 'MANAGER' and the dep_id is either 1001 or 2001.

In the WHERE clause, records are filtered according to whether the job_name column is equal to 'MANAGER' and the dep_id column is either 1001 or 2001.

The AND operators must satisfy both conditions, while OR operators can satisfy either condition.

Relational Algebra Expression:

Relational Algebra Expression: List the managers of department 1001 or 2001.

Relational Algebra Tree:

Relational Algebra Tree: List the managers of department 1001 or 2001.

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: List the employees who joined in 90's.
Next SQL Exercise: Employees, joined in a given month and salary range.

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://w3resource.com/sql-exercises/employee-database-exercise/sql-employee-database-exercise-49.php