The following SQL statement selects all fields from "Customers" where city is "Berlin" OR "München":

SELECT * FROM Customers
WHERE City='Berlin' OR City='München';
 

The following SQL statement selects all fields from "Customers" where country is "Germany" OR "Spain":

SELECT * FROM Customers
WHERE Country='Germany' OR Country='Spain';



Practice Excercise Practice now