How can we find records with missing manager assignments?
IS NULL tests whether a column contains missing or unassigned values.
Finding unassigned accounts, top-level executives without managers, missing contact data.
SELECT name
FROM employees
WHERE manager_id IS NULL;Practice typing production-grade SQL code for IS NULL.