I would like to create a mysql query that would exclude rows starting by digits using regexp. For instance here I have 1 column "indicators" with the following values:
5-Year Treasury Gilt Auction
52-Week Bill Auction
6-Month Bill Auction
ADP Nonfarm Employment Change
All Car Sales
I would like to create a query such as :
SELECT * FROM table WHERE indicators = [does not start with a digit...];
What is the right way to express such query in mysql?