OR
The OR command, used with WHERE, includes rows where either condition is true. The following SQL statement selects all fields from “Customers” where the city is either “Berlin” or “München”:
Example
SELECT * FROM Customers WHERE City=‘Berlin’ OR City=‘München’; |