EXISTS Condition
An EXISTS condition tests for existence of rows in a subquery. 
                  
Table 6-11 shows the EXISTS condition.
                  
Table 6-11 EXISTS Condition
| Type of Condition | Operation | Example | 
|---|---|---|
EXISTS  | 
                           
                               
  | 
                           SELECT department_id
  FROM departments d
  WHERE EXISTS
  (SELECT * FROM employees e
    WHERE d.department_id 
    = e.department_id)
   ORDER BY department_id; | 
                        
