Q. What will be the output of the following MySQL command?
SELECT *
FROM person
WHERE emp_id = NULL;
SELECT *
FROM person
WHERE emp_id = NULL;
β
Correct Answer: (C)
No output
Explanation: This question is about how MySQL handles NULL values in a WHERE clause.