5

在 phpMyAdmin 中,我在一列上创建了一个唯一索引,在屏幕底部我有以下内容:

Indexes:
Keyname = "[Name of column]"
Type = "BTREE"
Unique = "Yes"
Packed = "No"
Column = "[Name of column]"
Cardinality = "7"
Collation = "A"
Null = ""
Comment = ""

排序规则“A”到底是什么意思?ANSI?ASCII?我的专栏在 utf8_unicode_ci 中,即使使用 utf8 字符也能保证它是唯一的吗?

4

1 回答 1

2

https://dev.mysql.com/doc/refman/5.7/en/show-index.html

列在索引中的排序方式。这可以具有值 A(升序)或 NULL(未排序)。

于 2017-07-27T12:53:10.840 回答