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