Q. What will be the output of the following MySQL command?
SELECT *
FROM employee
WHERE (title=’HEAD TELLER’) OR (start_date>2013-01-24);
SELECT *
FROM employee
WHERE (title=’HEAD TELLER’) OR (start_date>2013-01-24);
β
Correct Answer: (B)
put CGI
Explanation: This question asks about a MySQL command that selects data from a table called employee. Let's break down the command: