Q. What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE lname LIKE ‘_a%e%’;
SELECT *
FROM employee
WHERE lname LIKE ‘_a%e%’;
β
Correct Answer: (D)
All of the mentioned
Explanation: This question is about using the LIKE operator in MySQL to filter data based on patterns in a column. Here's a breakdown of the code and the options: