

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following query?SELECT stu_id, first_name, last_nameFROM studentWHERE LEFT (first_name, 1) = F OR LEFT (last_name, 1) = F ; |
A. | Only those student are selected whose first name and last name started with any other letter except F |
B. | Only those student are selected whose first name and last name started with F |
C. | Only those student are selected whose first name started with F but last name can be starts with any other letter |
D. | All of above |
E. | None of these |
Answer» C. Only those student are selected whose first name started with F but last name can be starts with any other letter | |