Quick Wildcard question

phillsheen

Registered User.
Local time
Today, 18:13
Joined
Jun 12, 2006
Messages
86
In my query Im using the criteria

="cashpayer*"

to bring up any records in this field which start with cashpayer but its not working. Is my text correct?

Cheers
Phill
 
"=" means the same, to use wildcards you need "like", so in your case it should be:
Code:
like "cashpayer*"
 
or like "cashpayer" & * Result is probably the same, but I am not sure without testing if the * works inside inverted commas.

Chris B
 

Users who are viewing this thread

Back
Top Bottom