Home » MYSQL » NULL Values » Question
  1. What will be the output of the following query?
    SELECT *
    FROM Employee
    WHERE emp_id = NULL;
    1. No output
    2. Only those columns whose emp_id is NULL
    3. Only those columns whose emp_id is not NULL
    4. All of above
    5. None of these
Correct Option: A

An expression can never be equate to NULL that is why there will be no output.



Your comments will be displayed only after manual approval.