EasyOutput prediction

COUNT(column) ignores NULLs

Given this table (employees):

idnamemanager_id
1AliceNULL
2Bob1
3Carol1

What does this query return?

SELECT COUNT(manager_id) FROM employees;

← → arrow keys to navigate

Sign in to save your progress.