Re: Accent sensitive sorting by slovak alphabet
Posted by: Bernt Marius Johnsen
Date: August 30, 2021 02:08PM

In MySQL 8.0 you have the Slovak collations utf8mb4_sk_0900_ai_ci and utf8mb4_sk_0900_as_cs. They should probably do what you need. E.g.

mysql> select * from t1 order by v collate utf8mb4_sk_0900_ai_ci;
+--------------------+
| v |
+--------------------+
| Sack, John |
| Sácká, Gabriela |
| Sacková, Michelle |
| Sacks, Oliver |
| Sačková, Eva |
+--------------------+

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Accent sensitive sorting by slovak alphabet
356
August 30, 2021 02:08PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.