MySQL 从一个表复制到另一个表会删除重音符号
好的,所以问题与我最初的想法有点不同。
我对城市有这两个值:
'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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何感兴趣的人:
解决方案如下:
从 BINARY city = 'Gösselsdorf' 的城市中选择城市
to anyone interested:
the solution for this is as follows:
select city from cities where BINARY city = 'Gösselsdorf'