The following SQL statement selects all products with a price between 10 and 20:
SELECT * FROM Products
WHERE Price BETWEEN 10 AND 20;
WHERE Price BETWEEN 10 AND 20;
Practice Excercise Practice now
The following SQL statement selects all products with a price between 10 and 20:
Practice Excercise Practice now