mysql中utf8_bin、utf8_general_ci、utf8_general_cs編碼區別


轉載地址: https://www.cnblogs.com/exmyth/p/3616672.htmlhtml

在mysql中存在着各類utf8編碼格式,以下表:mysql

1)utf8_binsql

2)utf8_general_ci編碼

3)utf8_general_csurl

utf8_bin將字符串中的每個字符用二進制數據存儲,區分大小寫。.net

utf8_genera_ci不區分大小寫,ci爲case insensitive的縮寫,即大小寫不敏感。htm

utf8_general_cs區分大小寫,cs爲case sensitive的縮寫,即大小寫敏感。blog

如今假設執行以下命令:ci

create table test_bin (字符串

name varchar(32) not null primary key,

age int unsigned not null

) engine = InnoDB COLLATE=utf8_bin;

以上命令可以執行成功。

create table test_ci (

name varchar(32) not null primary key,

age int unsigned not null

) engine = InnoDB COLLATE=utf8_general_ci;

以上命令可以執行成功。

create table test_cs (

name varchar(32) not null primary key,

age int unsigned not null

) engine = InnoDB COLLATE=utf8_general_cs;

在5.6.10版本中,以上命令執行失敗,不支持utf8_genral_cs。

insert into test_bin values('Alice', 18);

以上命令可以執行成功。

insert into test_bin values('alice', 18);

以上命令可以執行成功,由於utf8_bin是以十六進制方式存儲數據,兩條記錄的主鍵不重複。

insert into test_ci values('Alice', 18);

以上命令可以執行成功。

insert into test_ci values('alily', 20);以上命令執行失敗,由於utf8_general_ci不區分大小寫,兩條記錄的主鍵重複。

相關文章
相關標籤/搜索