SQL - BETWEEN Operator Example Add Comment The following SQL statement selects all products with a price BETWEEN 10 and 20: Example SELECT * FROM ProductsWHERE Price BETWEEN 10 AND 20; Try it Yourself »
SQL - IN Operator Example Add Comment The following SQL statement selects all customers with a City of "Paris" or "London": Example SELECT * FROM CustomersWHERE City IN ('Paris','London'); Try it Yourself »