MySQL中,字符集和排序规则在处理文本数据时起着至关重要的作用,本文将详细介绍 MySQL中的字符集和排序规则。
常见字符集 以及 说明
UTF-8 是一种变长字符编码,可以表示世界上几乎所有的字符。utf8是MySQL中常用的字符集,但在处理某些特殊字符(如 Emoji)时可能会有问题。
utf8mb4 是 utf8 的超集,支持存储更广泛的字符范围(包括 Emoji 等)。通常用于支持更广泛的语言和符号。
Latin1 是一种较老的字符集,适用于大多数西欧语言和部分其他语言的字符。
Latin2 是扩展的 Latin1 字符集,支持中东欧语言中的额外字符。
CP1251 是常用于俄语的字符集。
UTF-16 是一种固定长度字符编码,用于表示 Unicode 字符。每个字符占两个字节。
UTF-32 是一种固定长度字符编码,用于表示 Unicode 字符。每个字符占四个字节。
Binary 字符集以二进制方式存储数据,并且对存储的数据进行大小写敏感的比较。
ASCII 字符集只支持 ASCII 字符集中的字符,范围较窄。
大多数选择 utf8mb4 字符集 同时也支持表情存储
以字符集 utf8mb4 为例
比较常用的应该就是以下4个
_ci(Case Insensitive):不区分大小写。
_cs(Case Sensitive):区分大小写。 选择对大小写敏感的排序规则,如utf8mb4_bin。
_unicode_ci:提供对多语言的支持,适用于需要处理不同语言字符的场景。
_ci(Case Insensitive):按照不区分大小写的方式进行排序。
_bin(Binary):按照二进制方式进行排序,严格按照字符的编码值进行比较。
不同排序规则对性能有影响,一些排序规则可能比其他规则更快。
选择合适的排序规则有助于优化查询性能。
我们来测试下 区分大小写和不区分大小写的排序规则 查询有何不同
新建bs表 同时 name 排序规则设置为utf8mb4_general_ci 大小写不敏感
CREATE TABLE `bs` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4
INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('1','a'); INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('2','A'); INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('3','aA'); INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('4','Aa'); INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('5','AA'); INSERT INTO `test`.`bs` (`id`,`name`) VALUES ('6','aa');
select * from bs where name= 'A';
select * from bs where name= 'a';
select * from bs where name= 'aa';
select * from bs where name= 'AA';
select * from bs where name= 'aA';
select * from bs where name= 'Aa';
select * from bs where name LIKE '%A';
select * from bs where name LIKE '%a';
select * from bs where name= '%A%';
select * from bs where name= '%a%';
修改表name 字段为 排序规则为 utf8mb4_bin
ALTER TABLE `bs` MODIFY COLUMN `name` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL ;
select * from bs where name= 'A';
select * from bs where name= 'a';
select * from bs where name= 'aa';
select * from bs where name= 'AA';
select * from bs where name= 'aA';
select * from bs where name= 'Aa';
select * from bs where name LIKE '%A';
select * from bs where name LIKE '%a';
select * from bs where name LIKE '%A%';
select * from bs where name LIKE '%a%';
可以看到在排序规则区分大小写和不区分大小写 对SQL查询的结果 影响还是比较大的。
所以在选择字符集时,需要考虑使用的语言、特殊字符的需求以及数据存储的具体情况。确保所选字符集能够覆盖项目中的所有字符需求,并选择合适的排序规则以确保数据的正确比较和排序。
到此这篇关于MySQL字符集和排序规则详解的文章就介绍到这了,更多相关MySQL字符集和排序规则内容请搜索插件窝以前的文章或继续浏览下面的相关文章希望大家以后多多支持插件窝!