Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Finding characters within a field 1

Status
Not open for further replies.

mikemansker

Technical User
Jul 1, 2000
10
US
I need to do a query that will return any records within a field that contain the following characters: . , - (period, comma or dash).

Any help would be appreciated.

Thanks,

Mike
 
SELECT Table1.MemoField
FROM Table1
WHERE (((Table1.MemoField) Like "*.*")) OR (((Table1.MemoField) Like "*-*")) OR (((Table1.MemoField) Like "*,*"));
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top