0
Are these statements the same?
SELECT * FROM customers WHERE City = 'New York' OR City = 'Los Angeles' OR City = 'Chicago'; =============================== SELECT * FROM customers WHERE City = 'New York' AND City = 'Los Angeles' AND City = 'Chicago';
2 Answers
+ 1
nope...these are not same logical operator
0
and operator and the or operator. they are different