-
What will be the output of the following query?
SELECT First_name
FROM Employee
WHERE emp_id != 6 OR emp_id IS NULL;
-
- Only those names whose emp_id is not equal to 6
- Only those names whose emp_id is equal to 6
- Only those names whose emp_id is not equal to 6 or emp_id with NULL values
- All of above
- None of these
Correct Option: C
Only those names whose emp_id is not equal to 6 or emp_id with NULL values