Evaluate the following SELECT statement:
SELECT emp_id, name FROM emp WHERE emp_id NOT IN (SELECT emp_id FROM emp WHERE dept_id = 30 AND job = 'SALESMAN');
What would happen if the inner query returned a NULL value?
Reveal answer
Fill a bubble to check yourself