Q. What will be the output of the following MySQL command?
SELECT *
FROM employee
WHERE title=’HEAD TELLER’;
SELECT *
FROM employee
WHERE title=’HEAD TELLER’;
β
Correct Answer: (B)
CROSS JOIN
Explanation: This question is asking about how to find specific data in a table called "employee" using a MySQL command.