Is there a way to force the sorting algorithm of an ORDER BY?
I'm not talking about ASC, DESC.
I actually get the data ordered almost as I want, but some special characters (ö, æ, ...) are not in the order I need.
I want those special chars ordered as they were not special chars,
i.e.:
abcd
abco
abcö
abcu
and not
abcd
abco
abcu
abcö
How can I force the charset I need to comply with during the sorting?
Thanks









Bookmarks