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

Only those columns whose id is not NULL



Your comments will be displayed only after manual approval.