Q. What will be the output of the following MySQL command?
SELECT *
FROM person
WHERE emp_id IS NULL;
SELECT *
FROM person
WHERE emp_id IS NULL;
β
Correct Answer: (A)
Only those columns whose emp_id is NULL
Explanation: This question asks about how MySQL handles finding rows where a specific column has a NULL value. Let's break it down: