LIKE

L

Lynn Trapp

LIKE does a comparison of string values. You need to use it with a wildcard,
though.

Where YourTextField LIKE "SomeValue*"

or

Where YourTextField LIKE "*SomeValue"

or

Where YourTextField LIKE "*SomeValue*"
 
Top