12.
What will be the output of the following MySQL command?
SELECT *
FROM person
WHERE emp_id = NULL;

15.
What will be the output of the following MySQL statement?
SELECT emp_id, fname, lname
FROM employee
WHERE LEFT (fname, 1) =’F’;