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

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



Your comments will be displayed only after manual approval.