I have a table with a column containing data that begin with numbers too, on MySQL
How can I select the rows that begin only with a number?
SELECT * FROM YourTable WHERE YourColumn regexp '^[0-9]+'
1.4m articles
1.4m replys
5 comments
57.0k users