gpt4 book ai didi

mysql - phpMyAdmin 设置不混淆变音符号

转载 作者:行者123 更新时间:2023-11-29 10:02:30 25 4
gpt4 key购买 nike

这个看起来很简单,但我似乎找不到任何东西。

我的查询结尾为:WHERE b6vjp_user_info.lastname LIKE '%ü%'

And these are the results

如您所见,Mysql 可以互换使用 ü 和 u。但我不知道如何阻止它这样做。

最佳答案

Either you make a numerical char code check or you use an accent sensitive collation 。如果您的查询不需要 unicode 标准化(即,您检查您先验知道它们没有特殊需求的字符串,例如(视觉上)无法区分的字形的存在 - 通常是以下字符串本质上属于您自己的查询而不是外部输出),我会使用 utf8_bin (仅在该特定查询中):

WHERE b6vjp_user_info.lastname LIKE '%ü%' COLLATE utf8_bin

请注意,这很可能会使搜索区分大小写,因此,如果您想要不区分大小写的搜索,则只需使用 LOWER(b6vjp_user_info.lastname)

关于mysql - phpMyAdmin 设置不混淆变音符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52626592/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com