Long-time reader, first-time poster here.
I\'m trying to figure out how to sort a list of artists for a music app I\'m writing.
To help understand the databa
if you want sort by symbol first
then use below query
ORDER BY artist REGEXP '^[^A-Za-z0-9]' DESC, artist ASC