-
What will be the output of the following query?
SELECT *
FROM student
WHERE last_name LIKE %bas% OR first_name LIKE %bbs%;
-
- All student whose last name should contain substring “bas” or first name should contain substring “bbs”
- All student whose last name should contain substring “bas”
- All student whose first name should contain substring “bbs”
- All of above
- None of these
Correct Option: A
All student whose last name should contain substring “bas” or first name should contain substring “bbs”