You can also combine the AND, ORand NOToperators.

The following SQL statement selects all fields from "Customers" where country is "Germany" AND city must be "Berlin" OR "Stuttgart" (use parenthesis to form complex expressions):
 

SELECT * FROM Customers
WHERE Country = 'Germany' AND (City = 'Berlin' OR City = 'Stuttgart');

The following SQL statement selects all fields from "Customers" where country is NOT "Germany" and NOT "USA":
 
SELECT * FROM Customers
WHERE NOT Country = 'Germany' AND NOT Country = 'USA';



Practice Excercise Practice now