I have a MySQL table with these rows:
¡Hola!
¿Qué tal?
Fine
Hello
Adiós
How are you?
How can I sort them to obtain this result:
Adiós
Fine
Hello
¡Hola!
How are you?
¿Qué tal?
I want MySQL to ignore non alphanumeric characters.
It's possible to do this fast without making a new column with a simplified value?