Jan 29, 2004 #1 DeepBlerg Technical User Joined Jan 13, 2001 Messages 224 Location AU Hey, How do I select * from a table where I want a field who's value's first character is a number from 0 to 9? thanks.
Hey, How do I select * from a table where I want a field who's value's first character is a number from 0 to 9? thanks.
Jan 29, 2004 1 #2 vanekl Programmer Joined Nov 25, 2003 Messages 69 Location US SELECT * FROM yourtable WHERE afield REGEXP "^[0-9]"; Upvote 0 Downvote