MySQL 从一个表复制到另一个表会删除重音符号

发布于 2024-12-03 19:04:49 字数 232 浏览 0 评论 0原文

好的,所以问题与我最初的想法有点不同。

我对城市有这两个值:

'1520','Gossendorf'

'3358','Gösselsdorf'

如果我这样做: 从 city = 'Gösselsdorf' 的城市中选择城市

第一个结果出现(即使它不带重音符号)!

为什么?

ok so the problems is a bit diffrent from what i originally though.

i have both of these values for city :

'1520', 'Gossendorf'

'3358', 'Gösselsdorf'

and if i do:
select city from cities where city = 'Gösselsdorf'

the first result comes up ( even due it is not with accents ) !

why?

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

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

发布评论

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

评论(1

风铃鹿 2024-12-10 19:04:49

对于任何感兴趣的人:

解决方案如下:

从 BINARY city = 'Gösselsdorf' 的城市中选择城市

to anyone interested:

the solution for this is as follows:

select city from cities where BINARY city = 'Gösselsdorf'

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