You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
348 B
SQL

/*Write a query to display all the information of the employees who does not work in those departments where some employees works whose id within the range 100 and 200.
*/
SELECT *
FROM employees
WHERE department_id NOT IN
(SELECT department_id
FROM departments
WHERE manager_id BETWEEN 100 AND 200);