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

Wildcards...

Status
Not open for further replies.

Masali

Programmer
Jun 19, 2002
143
SE
Hi!

I know how to search for anything starting with, say a A.

select * from table where title like 'A%'

But is there a way to search in title for values starting with a digit, 0-9?

Best regards

Masali
 
I have also tried:

SELECT * FROM table WHERE title REGEX '^[:digit:]

Doesn't work either
 
I solved it, it whas REGEXP, not REGEX
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top