Often, sorting is done with symbols sorted to the top, like 0 or * or &. This is the default way that mysql sorts; numbers and sy
0
*
&
Select ... From ... Order By Case When Col Like '[0-9]%' Then 1 Else 0 End Asc , Col
Another solution that would account for special characters:
Select ... From ... Order By Case When Col Like '[A-Z]%' Then 0 Else 1 End Asc , Col