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.
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)
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 *.