w3resource

SQL Exercise: List the employees not in the MARKETING department

SQL subqueries on employee Database: Exercise-31 with Solution

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

31. From the following table, write a SQL query to find those employees who are not working in the department MARKETING. Return complete information about the employees.

Sample table: employees


Sample table: department


Sample Solution:

SELECT *
FROM employees
WHERE dep_id NOT IN
    (SELECT dep_id
     FROM department
     WHERE dep_name = 'MARKETING');

Sample Output:

 emp_id | emp_name | job_name  | manager_id | hire_date  | salary  | commission | dep_id
--------+----------+-----------+------------+------------+---------+------------+--------
  68319 | KAYLING  | PRESIDENT |            | 1991-11-18 | 6000.00 |            |   1001
  67832 | CLARE    | MANAGER   |      68319 | 1991-06-09 | 2550.00 |            |   1001
  65646 | JONAS    | MANAGER   |      68319 | 1991-04-02 | 2957.00 |            |   2001
  67858 | SCARLET  | ANALYST   |      65646 | 1997-04-19 | 3100.00 |            |   2001
  69062 | FRANK    | ANALYST   |      65646 | 1991-12-03 | 3100.00 |            |   2001
  63679 | SANDRINE | CLERK     |      69062 | 1990-12-18 |  900.00 |            |   2001
  68736 | ADNRES   | CLERK     |      67858 | 1997-05-23 | 1200.00 |            |   2001
  69324 | MARKER   | CLERK     |      67832 | 1992-01-23 | 1400.00 |            |   1001
(8 rows)

Explanation:

The said query in SQL that retrieves all employees from the 'employees' table who do not belong to the 'MARKETING' department.

The WHERE clause filters all employees whose department ID is not in the list of department IDs associated with the 'MARKETING' department.

The subquery that selects the department ID(s) associated with the 'MARKETING' department.

The subquery is executed first, and its result is used in the main query to filter the rows from the employees table.

Practice Online


Structure of employee Database:

employee database structure

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

Previous SQL Exercise: Display the employees whose manager name is JONAS.
Next SQL Exercise: List the employees who are working as a manager.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.