Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the output of the following query?
    SELECT *
    FROM student
    WHERE last_name LIKE ‘_a%e%’;
    1. All student whose last name start with any letter but contain at least one ‘e’ in his name
    2. All student whose last name should have letter ‘a’ in second position and at least one ‘e’ in his name
    3. All student whose last name start with any letter but second letter should be ‘a’
    4. All of above
    5. None of these
Correct Option: D

All of above



Your comments will be displayed only after manual approval.