I have a table with ~3000 rows and I want to select rows that have names starting with a number (like 101green and 21-orange in example below) is there an easy way to do this with a simple "SELECT * FROM table WHERE name LIKE '#%' ORDER BY name"
blue
red
101green
21-orange
black