Home / Report Question

Q. What will be the output of the following MySQL statement? SELECT * FROM employee WHERE lname LIKE ‘F%’ OR lname LIKE ‘%T’;
  • A. All employees whose last name should started with 'F'
  • B. All employees whose last name end with 'T'
  • C. All employees whose last name should started with 'F' and end with 'T'
  • D. None of the mentioned