在phpMyAdmin中,我在一个列上创建了一个唯一的索引,在屏幕底部我有以下内容:
Indexes:
Keyname = "[Name of column]"
Type = "BTREE"
Unique = "Yes"
Packed = "No"
Column = "[Name of column]"
Cardinality = "7"
Collation = "A"
Null = ""
Comment = ""排序规则"A“到底是什么意思?安西?ASCII?我的列是utf8_unicode_ci格式的,即使有utf8字符也能保证它的唯一性吗?
发布于 2017-07-27 20:53:11
https://dev.mysql.com/doc/refman/5.7/en/show-index.html
列在索引中的排序方式。它可以具有值A(升序)或NULL (未排序)。
https://stackoverflow.com/questions/14813401
复制相似问题