Loading lesson path
Concept visual
Start at both ends
clause can contain one or many
operators.
operator is used to filter records based on more than one condition.
operator displays a record if all the conditions are TRUE. The following SQL selects all customers from Spain that starts with the letter 'G':
Select all customers where Country is "Spain" AND CustomerName starts with the letter 'G':
SELECT *WHERE Country = 'Spain' AND CustomerName LIKE 'G%';column1, column2, ...
table_name
condition1
condition2
condition3 ...
;Customers table used in the examples: