Forum Moderators: open
So if I have records such as:
33 Acme Co. 1A Co. Acme Co.
It should return both 33 and 1A.
select * from table where field regexp '^\d+.*';
MySQL uses standard regular expressions. The above means
^ begins with (first character on the line or in the field) \d+ one or more digits .* followed by zero or more of ANY character
Untested, but that should do it . . . .