-
What will be the output of the following query?
SELECT *
FROM Employee
WHERE emp_id = NULL;
-
- No output
- Only those columns whose emp_id is NULL
- Only those columns whose emp_id is not NULL
- All of above
- None of these
Correct Option: A
An expression can never be equate to NULL that is why there will be no output.