-
What will be the output of the following query?
SELECT *
FROM student
WHERE last_name LIKE ‘_a%e%’;
-
- All student whose last name start with any letter but contain at least one ‘e’ in his name
- All student whose last name should have letter ‘a’ in second position and at least one ‘e’ in his name
- All student whose last name start with any letter but second letter should be ‘a’
- All of above
- None of these
Correct Option: D
All of above