IntermediateSubqueries & EXISTS
Find departments with no active projects
The query
SQL
SELECT dept_name, location
FROM departments
WHERE dept_id NOT IN (
SELECT DISTINCT dept_id
FROM projects
WHERE status = 'active'
AND dept_id IS NOT NULL
)
ORDER BY dept_name;Note
“NOT IN with subquery for exclusion. IMPORTANT: add IS NOT NULL in subquery to avoid NOT IN NULL trap.