EasyOutput prediction
COUNT(column) ignores NULLs
Given this table (employees):
| id | name | manager_id |
|---|---|---|
| 1 | Alice | NULL |
| 2 | Bob | 1 |
| 3 | Carol | 1 |
What does this query return?
SELECT COUNT(manager_id) FROM employees;
← → arrow keys to navigate
Sign in to save your progress.