Pages

OracleEBSpro is purely for knowledge sharing and learning purpose, with the main focus on Oracle E-Business Suite Product and other related Oracle Technologies.

I'm NOT responsible for any damages in whatever form caused by the usage of the content of this blog.

I share my Oracle knowledge through this blog. All my posts in this blog are based on my experience, reading oracle websites, books, forums and other blogs. I invite people to read and suggest ways to improve this blog.


Sunday, March 3, 2013

Using the EXISTS and NOT EXISTS Operator

EXISTS

Find employees who have at least one person reporting to them.

SELECT employee_id, last_name, job_id, department_id
FROM employees outer
WHERE EXISTS ( SELECT 'X'
                               FROM employees
                               WHERE manager_id = outer.employee_id);
NOT EXISTS

Find all departments that do not have any employees.


SELECT department_id, department_name
FROM departments d
WHERE NOT EXISTS (SELECT 'X'
                                        FROM employees
                                        WHERE department_id = d.department_id);

No comments:

Post a Comment