Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the output of the following query?
    SELECT *
    FROM student
    WHERE last_name LIKE %t%f%n%;
    1. All student whose last name contains ‘f’ in fourth position
    2. All student whose last name contains ‘n’ in second last position
    3. All student whose last name contain ‘t’ in second position
    4. All of above
    5. None of these
Correct Option: D

All of above



Your comments will be displayed only after manual approval.