What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE lname LIKE %t%f%n%;
SELECT *
FROM employee
WHERE lname LIKE %t%f%n%;
A. All employees whose last name contain 't' in the second position
B. All employees whose last name contains 'f' in the fourth position
C. All employees whose last name contains 'n' in second last position
D. All of the mentioned
Answer: Option D
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion