Forum Moderators: coopster
[dev.mysql.com...]
Should give you all the info needed to do exactly what you want (Select only records beginning with number).
Example:
Select * from table_name where column REGEXP '^[0-9]';
Should find all records beginning with a number.
[edit]jatar_k was faster (but I included 0). :)[/edit]
[dev.mysql.com...]
LEFT(str,len)Returns the leftmost len characters from the string str.
mysql> SELECT LEFT('foobarbar', 5);
-> 'fooba'