MySQL - 最佳排序规则?

发布于 2024-11-28 06:56:01 字数 151 浏览 2 评论 0原文

我们开始让我们的产品更加国际化,并且我们开始遇到外来字符的问题,主要来自西班牙语和欧洲(希腊语等),并且想知道对于需要包含这些字符的表来说,最好的排序规则是什么人物?到目前为止,我们总是让 PHPMyAdmin 选择它想要的排序规则,但我们觉得我们需要更多的控制。

谢谢。

We are starting to get our product more internationalized, and we are starting to encounter issues with foreign characters, mostly from Spanish and European (Greek, etc), and are wondering what is the best collation to use for tables that will need to contain these characters? Until now, we always let PHPMyAdmin choose the collation it wants, but we feel we need a bit more control.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2024-12-05 06:56:02

utf8_general_ci 是安全的方法,特别是因为您支持多种带有特殊字符的语言。

utf8_general_ci 认为所有重音字符与其无重音字符等效。 e é è ë 与 utf8_general_ci 完全相同,因此它提供了较小的性能提升。另一方面,它的排序不如 utf8_unicode_ci 准确,并且在处理 ß 或其他连字等字符时可能会出现一些问题。

因此,基本上,如果您需要一些精确的排序,请使用 utf8_unicode_ci ,否则请使用 utf8_general_ci 。

utf8_general_ci is the safe way to go, especially since you're supporting several languages with special characters.

utf8_general_ci considers all accented characters to be equivalent its accent-less counter part. e é è ë are all the same to utf8_general_ci so it provides a small performance increase. On the other hand, it isn't as accurate as utf8_unicode_ci for sorting and might have some trouble with characters like ß or other ligatures.

So basically if you need some precise sorting use utf8_unicode_ci, otherwise go for utf8_general_ci.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文