Loading lesson path
Concept visual
Start at both ends
clause can contain one or more OR operators.
operator is used to filter records based on more than one condition.
operator displays a record if any of the conditions are TRUE. The following SQL selects all customers from Germany OR Spain:
Select all customers where Country is "Germany" OR "Spain":
SELECT *WHERE Country = 'Germany' OR Country = 'Spain';column1, column2, ...
table_name
condition1 OR condition2 OR condition3 ...
;Customers table used in the examples:
Obere Str. 57
12209