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

wildcard search

Status
Not open for further replies.

Xzibit7

Technical User
Jun 20, 2006
172
US
I am doing a simple select query in access. I am trying to retrieve all the values of an item name that have the word bushing in them. The table has the format like electrical,bushing. I have tried "*" & "Bushing" and I get no results although I know that these items are in the table any help would be appreciated. Thanks
 
Maybe
Code:
SELECT * FROM MyTable
WHERE item_name LIKE "*bushing*"
thinking that "*bushing" matches items ending in "bushing".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top