Write a query returning names beginning with the letter "a"?

J

John Vinson

How do I write a query returning all contact names begining with the Letter
"A"?

Use a criterion of

LIKE "A*"

LIKE is an operator which uses wildcards; the * wildcard means "match
any string of characters".

John W. Vinson[MVP]
 
Top