Mar 2, 2005 #1 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
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
Mar 2, 2005 Thread starter #2 Masali Programmer Jun 19, 2002 143 SE I have also tried: SELECT * FROM table WHERE title REGEX '^[:digit:] Doesn't work either Upvote 0 Downvote
Mar 2, 2005 Thread starter #3 Masali Programmer Jun 19, 2002 143 SE I solved it, it whas REGEXP, not REGEX Upvote 0 Downvote