NULL
14 / 30
EasyOutput prediction

The WHERE clause trap every beginner hits

Given this table (employees):

idnamedept_id
1Alice10
2BobNULL
3CarolNULL

What does this query return?

SELECT name FROM employees WHERE dept_id = NULL;

← → arrow keys to navigate

Sign in to save your progress.