-
What will be the output of the following query?
SELECT stu_id, first_name, last_name
FROM student
WHERE LEFT (last_name, 1) =’T’;
-
- Only those student are selected whose last name started with other than ‘T’
- Only those student are selected
- Only those student are selected whose last name started with ‘T’
- All of above
- None of these
Correct Option: C
Only those student are selected whose last name started with ‘T’