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]+'
2.1m questions
2.1m answers
60 comments
57.0k users