-
What will be the output of the following query?
SELECT *
FROM student
WHERE last_name LIKE %t%f%n%;
-
- All student whose last name contains ‘f’ in fourth position
- All student whose last name contains ‘n’ in second last position
- All student whose last name contain ‘t’ in second position
- All of above
- None of these
Correct Option: D
All of above