2.
What will be the result of the following MySQL command?
WHERE TITLE=’teller’ OR start_date=’2007-01-01’

3.
If emp_id contain the following set {1, 2, 2, 3, 3, 1}, what will be the output on execution of the following MySQL statement?
SELECT emp_id
FROM person
ORDER BY emp_id;