Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

OR

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’;