Examveda
Examveda

What will be the output of the following MySQL statement?
SELECT emp_id, fname, lname
FROM employee
WHERE LEFT (lname, 1) =’F’;

A. Only those employees are selected whose last name started with 'F'

B. Only those employees are selected whose last name started with other than 'F'

C. All of the mentioned

D. None of the mentioned

Answer: Option A


This Question Belongs to MySQL >> MySQL Miscellaneous

Join The Discussion

Related Questions on MySQL Miscellaneous