LIKE keyword for MySQL

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
bgaming
Forum Newbie
Posts: 6
Joined: Fri Dec 19, 2003 11:10 pm

LIKE keyword for MySQL

Post by bgaming »

is there a way to use the LIKE keyword and have it find a field values that begin with a numeral (0-9) all at once??
User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

SELECT blah FROM foo WHERE bar REGEXP "^[[:digit:]]+"
Post Reply