Q. What will be the output of the following MySQL command?
SELECT emp_id, fname, lname
FROM employee
WHERE title=’HEAD TELLER’ AND start_date=2008-11-24;
β
Correct Answer: (C)
Columns mention with "SELECT" clause and only those rows which contain 'HEAD TELLER' as a "title" and start_date as 2008-11-24
Explanation: This question is about understanding how the SELECT statement works in MySQL. Let's break it down: