hello! i need help on mysql query. i must select all records that start with a number. is there any simple way like SELECT * FROM mytable WHERE column [starts with numbers from 0-9]
SELECT * FROM mytable WHERE column REGEXP "[0-9]"