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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple query help

Status
Not open for further replies.

ptrifile

Technical User
Aug 10, 2004
457
US
I have a very basic table with only one field and I just need to know the syntax for returning records that contain the word "HIPAA" anywhere in the field. So if something says "XXX HIPPA XXX" or "HIPPA XXX XXX" that those records are shown. Any help is appreciated

Thanks

Paul
 
Code:
SELECT fld From tbl

WHERE fld LIKE '*HIPPA*'

You will need to use '%HIPPA%' if you are using ADO.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top