72.
What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE lname LIKE %t%f%n%;

73.
Which of these is preferred when stored procedures are not being used?
CLIENT_MULTI_STATEMENTS, mysql_set_server_option()

79.
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 statement?
SELECT emp_id
FROM person
ORDER BY emp_id;