-
What will be the output of the following query?
SELECT *
FROM student
WHERE last_name LIKE ‘F%’ AND last_name LIKE ‘%T’;
-
- All student whose last name start with ‘T’ and end with ‘F’
- All student whose last name should started with ‘F’ and end with ‘F’
- All student whose last name should started with ‘F’ and end with ‘T’
- All of above
- None of these
Correct Option: C
All student whose last name should started with ‘F’ and end with ‘T’