Examples of expressions that use part of a field's value as criteria

Field Expression Displays
ShipName Like "S*" Orders shipped to customers whose names start with the letter S.
ShipName Like "*Imports" Orders shipped to customers whose names end with the word "Imports".
ShipName Like "[A-D]*" Orders shipped to customers whose names start with A through D.
ShipName Like "*ar*" Orders shipped to customers whose names include the letter sequence "ar".
ShipName Like "Maison Dewe?" Orders shipped to the customer with "Maison" as the first part of its name and a 5-letter second name in which the first 4 letters are "Dewe" and the last letter is unknown.