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