ORDER BY alphabet first then follow by number

Use the following ORDER BY clause:

ORDER BY IF(name RLIKE '^[a-z]', 1, 2), name

Leave a Comment