MySQL 中的 UNIQUE 索引区分大小写吗?

发布于 2024-07-13 07:21:09 字数 56 浏览 9 评论 0原文

MySQL 中的索引 (indexes) 是否定义为 UNIQUE 区分大小写?

Are indices (indexes) defined as UNIQUE case sensitive in MySQL?

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

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

发布评论

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

评论(2

苍暮颜 2024-07-20 07:21:09

这取决于字段的 排序规则 - 如果它是 ci(不区分大小写)或cs(区分大小写)。 唯一索引将相应地应用。

It depends on the collation of the field - if it's ci (case insensitive) or cs (case sensitive). The unique index would apply accordingly.

墨落画卷 2024-07-20 07:21:09

您可以使用此语法使列区分大小写。
唯一索引也区分大小写。

更改表 tbl_name 修改
col_name 列_定义
[字符集 charset_name]
[整理排序规则_名称]

示例:

ALTER TABLE `tablename` MODIFY
`column` VARCHAR(100) 
CHARACTER SET utf8
COLLATE utf8_bin;

注意: 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.

ALTER TABLE tbl_name MODIFY
col_name column_definition
[CHARACTER SET charset_name]
[COLLATE collation_name]

Example:

ALTER TABLE `tablename` MODIFY
`column` VARCHAR(100) 
CHARACTER SET utf8
COLLATE utf8_bin;

Note: utf8_bin compares strings by the binary value of each character in the string.

Tested on Msql 5.5.X

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