If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > String search (looking for number characters)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-28-06, 22:28
phake123 phake123 is offline
Registered User
 
Join Date: Mar 2004
Posts: 15
String search (looking for number characters)

What is th wildcard for any digit? Tried searching online but only found the below wildcards. Is their any wildcard like "#" that is used in MS Access. Trying to find string characters that contain digits like:

"SnapMirror[22]" would be a valid return row.


_ (underscore) = Any single character (SQL)
% = Any string of zero or more characters (SQL)


Thanks everyone for your advice and comments
Reply With Quote
  #2 (permalink)  
Old 03-28-06, 22:30
phake123 phake123 is offline
Registered User
 
Join Date: Mar 2004
Posts: 15
btw, i'm using mysql 4.1.12a-nt
Reply With Quote
  #3 (permalink)  
Old 03-31-06, 18:40
jfulton jfulton is offline
Registered User
 
Join Date: Apr 2005
Location: Baltimore, MD
Posts: 297
...WHERE column_name REGEXP '[0-9]*'

http://dev.mysql.com/doc/refman/5.0/...-matching.html
Reply With Quote
  #4 (permalink)  
Old 03-31-06, 18:47
jfulton jfulton is offline
Registered User
 
Join Date: Apr 2005
Location: Baltimore, MD
Posts: 297
Whoops, that's what I get for copying straight off of the mysql site. The * operator will match 0 or more occurences, and you don't want that. So just remove the *.

Code:
 	...WHERE column_name REGEXP '[0-9]'
Reply With Quote
  #5 (permalink)  
Old 04-02-06, 03:02
phake123 phake123 is offline
Registered User
 
Join Date: Mar 2004
Posts: 15
Thanks for the help!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On