É与 MySQL 数据库中的 E 比较

发布于 2024-09-30 16:30:44 字数 278 浏览 5 评论 0原文

MySQL 认为 É 和 E 相同,因此抛出异常:Duplicate entry 'CLEME' for key 'PRIMARY'

MySQL 是 5.1.30,表使用 utf8-unicode-ci 并且定义了字段如下:

search_key varchar(120) CHARACTER SET latin1 NOT NULL,

有没有办法让这个字段知道它们不一样?

谢谢!

MySQL thinks É and E are the same and thus throw an exception saying Duplicate entry 'CLEME' for key 'PRIMARY'

MySQL is 5.1.30 and the table uses utf8-unicode-ci and the field is defined as follows:

search_key varchar(120) CHARACTER SET latin1 NOT NULL,

Is there a way to let this field know they are not the same?

Thanks!

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

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

发布评论

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

评论(1

硬不硬你别怂 2024-10-07 16:30:44

将字段的字符集也更改为 UTF-8。另外,在执行插入时将连接字符集设置为 UTF-8。

Change the character set of the field to UTF-8 as well. Also, set the connection character set to UTF-8 when you do the insert.

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