96.
If emp_id contain the following set {9, 7, 6, 4, 3, 1, 2}, what will be the output on execution of the following MySQL command?
SELECT emp_id
FROM person
ORDER BY emp_id ASC;

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

99.
Which option is used in mysqldump to make all tables in the destination databases to use a different storage engine?