select * from customers where contactFirstName LIKE 'R%' select * from customers where contactFirstName LIKE '%i%' select * from customers where city LIKE '%ll%' select * from customers where contactFirstName LIKE '%ee' AND country LIKE '%s%' select * from customers where phone LIKE '+%' select * from customers where addressLine1 LIKE '%Circus%' AND city = 'Manchester' select * from customers where customerName LIKE '%Signal%' AND city = '%Las%' select * from customers where customerName LIKE '%&%' AND city = 'Lyon' select * from customers where customerName LIKE '%Ltd.%'