Numeric Wild Cards

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there any such character that acts strictly as a numeric wildcard?
(i.e.) l~er would pick up l9er but not lier (~ being the wildcard I am
looking for, strictly numeric numbers.)?

-Lee
 
Also, I'm looking for the Wild Card in SQL server, not MS Access. I connect
to the SQL server on one piece.
 
Lee said:
Is there any such character that acts strictly as a numeric wildcard?
(i.e.) l~er would pick up l9er but not lier (~ being the wildcard I
am looking for, strictly numeric numbers.)?

-Lee

How about

Like '1[0-9]er'

? That would match a single numeric digit.
 
Lee said:
Also, I'm looking for the Wild Card in SQL server, not MS Access. I connect
to the SQL server on one piece.


So will Like "l#er", at least in Jet. I don't know if SQL
Server has an equivalent.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top