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

Can the * be selected as a regular character?

Status
Not open for further replies.

MarketAn

Technical User
Oct 12, 2000
12
0
0
US
The subject says it all. I have been given a table of item numbers that are segrigated by * and non-* numbers (ie. 111 and 111*). Is there any way to just select the * numbers? Thank you
 

You can use the INSTR function.

SELECT TestTbl.*
FROM TestTbl
WHERE InStr([ItemNo],"*")>0;
Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it and comment if you have time.
NOTE: Reference to the FAQ is part of my signature and is not directed at any individual.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top