请帮助我理解MySQL utf8mb4字段中如何处理像emoji这样的多字节字符。
请参阅下面的简单测试SQL来说明挑战。
/* Clear Previous Test */
DROP TABLE IF EXISTS `emoji_test`;
DROP TABLE IF EXISTS `emoji_test_with_unique_key`;
/* Build Schema */
CREATE TABLE `emoji_test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`string` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE `emoji_test_with_unique_key` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`string` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`status` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_string_status` (`string`,`status`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
/* INSERT data */
# Expected Result is successful insert for each of these.
# However some fail. See comments.
INSERT INTO emoji_test (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test_with_unique_key (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test_with_unique_key (`string`, `status`) VALUES ('', 1); # FAIL: Duplicate entry '?-1' for key 'idx_string_status'
INSERT INTO emoji_test_with_unique_key (`string`, `status`) VALUES ('', 1); # SUCCESS
INSERT INTO emoji_test_with_unique_key (`string`, `status`) VALUES ('', 1); # FAIL: Duplicate entry '??-1' for key 'idx_string_status'
/* Test data */
/* Simple Table */
SELECT * FROM emoji_test WHERE `string` IN ('','','',''); # SUCCESS (all 4 are found)
SELECT * FROM emoji_test WHERE `string` IN (''); # FAIL: Returns both and
SELECT * FROM emoji_test WHERE `string` IN (''); # FAIL: Returns both and
SELECT * FROM emoji_test; # SUCCESS (all 4 are found)
/* Table with Unique Key */
SELECT * FROM emoji_test_with_unique_key WHERE `string` IN ('','','',''); # FAIL: Only 2 are found (due to insert errors above)
SELECT * FROM emoji_test_with_unique_key WHERE `string` IN (''); # SUCCESS
SELECT * FROM emoji_test_with_unique_key WHERE `string` IN (''); # FAIL: found instead of
SELECT * FROM emoji_test_with_unique_key; # FAIL: Only 2 records found ( and )
我有兴趣了解导致上述FAIL
的原因以及如何解决这个问题。
具体做法是:
?
?CREATE TABLE
(具有唯一键的那个)进行更改,以使所有测试查询成功返回?答案 0 :(得分:13)
您对列使用utf8mb4_unicode_ci
,因此检查不区分大小写。如果您改为使用utf8mb4_bin
,那么表情符号会被正确识别为不同的字母。
使用WEIGHT_STRING
,您可以获得用于输入字符串排序和比较的值。
如果你写:
SELECT
WEIGHT_STRING ('' COLLATE 'utf8mb4_unicode_ci'),
WEIGHT_STRING ('' COLLATE 'utf8mb4_unicode_ci')
然后你可以看到两者都是0xfffd
。他们在Unicode Character Sets说:
对于一般排序规则中的补充字符,权重是0xfffd REPLACEMENT CHARACTER的权重。
如果你写:
SELECT
WEIGHT_STRING('' COLLATE 'utf8mb4_bin'),
WEIGHT_STRING('' COLLATE 'utf8mb4_bin')
您将获得他们的unicode值0x01f32e
和0x01f336
。
对于Ä
,Á
和A
等其他字母,如果您使用utf8mb4_unicode_ci
则相同,可以在以下位置看到差异:
SELECT
WEIGHT_STRING ('Ä' COLLATE 'utf8mb4_unicode_ci'),
WEIGHT_STRING ('A' COLLATE 'utf8mb4_unicode_ci')
那些映射到权重0x0E33
Ä: 00C4 ; [.0E33.0020.0008.0041][.0000.0047.0002.0308] # LATIN CAPITAL LETTER A WITH DIAERESIS; QQCM
A: 0041 ; [.0E33.0020.0008.0041] # LATIN CAPITAL LETTER A
根据:Difference between utf8mb4_unicode_ci and utf8mb4_unicode_520_ci collations in MariaDB/MySQL? utf8mb4_unicode_ci
使用的权重基于UCA 4.0.0,因为表情符号没有出现在那里,映射的权重为0xfffd
如果您需要使用不区分大小写的比较并对常规字母和表情符号进行排序,则使用utf8mb4_unicode_520_ci
解决此问题:
SELECT
WEIGHT_STRING('' COLLATE 'utf8mb4_unicode_520_ci'),
WEIGHT_STRING('' COLLATE 'utf8mb4_unicode_520_ci')
对于那些表情符号0xfbc3f32e
和0xfbc3f336
,也会获得不同的权重。