Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the output of the following query?
    SELECT *
    FROM student
    WHERE last_name LIKE ‘F%’ OR last_name LIKE ‘%T’;
    1. All student whose last name should started with ‘F’ and end with ‘T’
    2. All student whose last name should started with ‘F’
    3. All student whose last name end with ‘T’
    4. All of above
    5. None of these
Correct Option: A

All student whose last name should started with ‘F’ and end with ‘T’



Your comments will be displayed only after manual approval.