1.

What will be the output of the following query?
SELECT *
FROM student
WHERE last_name LIKE %bas% OR first_name LIKE %bbs%;

A. All student whose last name should contain substring bas or first name should contain substring bbs
B. All student whose last name should contain substring bas
C. All student whose first name should contain substring bbs
D. All of above
E. None of these
Answer» B. All student whose last name should contain substring bas


Discussion

No Comment Found

Related MCQs