Reputation: 13273
I'm using MySQL to store Cyrillic and Latin strings. I want to display all these strings in a list, sorted alphabetically. However, they are currently sorted according to the first character like that:
I'd like Cyrillic characters to go before Latin characters. How can I do this?
Upvotes: 1
Views: 1706
Reputation: 15735
To keep things efficient, I think the best way would be to create a custom collation.
Upvotes: 1