+ 4
Whats the difference?
SELECT ID, firstName, Age FROM customers WHERE Age BETWEEN 30 AND 40; and this other statement SELECT ID, firstName, Age FROM customers WHERE Age >= 30 AND Age <= 40;
1 Answer
+ 5
no difference
SELECT ID, firstName, Age FROM customers WHERE Age BETWEEN 30 AND 40; and this other statement SELECT ID, firstName, Age FROM customers WHERE Age >= 30 AND Age <= 40;