Question: a . SELECT * FROM books WHERE pubid IN ( 1 , 2 ) OR retail = > 4 2 ; b . SELECT *

a.
SELECT * FROM books
WHERE pubid IN (1,2) OR retail =>42;
b.
SELECT * FROM books
WHERE pubid =1 OR pubid =2 OR retail >=42;
c.
SELECT * FROM books
WHERE pubid =1 AND pubid=2 OR retail >=42;
d.
both a and b
a.
search patterns
b.
comparison operators
c.
arithmetic operations
d.
logical operators

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!