0
SQL query about AND
Is the second statement same as first one ? And does the second statement work in the first place ? SELECT ID, FirstName, LastName, Age FROM customers WHERE Age >= 30 AND Age <= 40; --------------------------------------- SELECT ID, FirstName, LastName, Age FROM customers WHERE 30 <= Age <= 40;
1 Answer
+ 1
The same