The following SQL statement selects all customers with a City starting with "ber":
 

SELECT * FROM Customers
WHERE City LIKE 'ber%';

The following SQL statement selects all customers with a City containing the pattern "es": 
 
SELECT * FROM Customers
WHERE City LIKE '%es%';



Practice Excercise Practice now