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

  • Thread starter Thread starter Guest
  • Start date Start date
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]
 
Back
Top