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