Search the Whole World Here.,.,

SQL - OR Operator Example


The following SQL statement selects all customers from the city "Berlin" OR 

"München", in the "Customers" table: 

Example

SELECT * FROM Customers
WHERE City='Berlin'
OR City='München';
Try it Yourself »


EmoticonEmoticon