I've run into an interesting problem, and I'm wondering if anyone knows the solution...I currently am pulling some rows from a table, and ordering them by a specific column. In that column, are some entries with "special characters" such as ö, û, and á. When mySQL sorts the entries that contain such characters, it doesn't read them as the actual letters, but places them at the end of the order. So, for example:
eaten
egg
enter
essay
ewe
eöl
The final term there, "eöl", should go after "enter", if that makes sense. Is there a way to make mysql understand the special characters differently as just regular vowels, or am I completely out of luck when it comes to ordering these words?