MySQL 中的 UNIQUE 索引区分大小写吗?
MySQL 中的索引 (indexes) 是否定义为 UNIQUE 区分大小写?
Are indices (indexes) defined as UNIQUE case sensitive in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
MySQL 中的索引 (indexes) 是否定义为 UNIQUE 区分大小写?
Are indices (indexes) defined as UNIQUE case sensitive in MySQL?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这取决于字段的 排序规则 - 如果它是
ci
(不区分大小写)或cs
(区分大小写)。 唯一索引将相应地应用。It depends on the collation of the field - if it's
ci
(case insensitive) orcs
(case sensitive). The unique index would apply accordingly.您可以使用此语法使列区分大小写。
唯一索引也区分大小写。
示例:
注意: utf8_bin 通过字符串中每个字符的二进制值来比较字符串。
在 Msql 5.5.X 上测试
You can make a column case-sensitive by using this syntaxis.
the unique index also will be case-sensitive.
Example:
Note: utf8_bin compares strings by the binary value of each character in the string.
Tested on Msql 5.5.X