查看字符集以及默认的排序规则
show charset;
或者:
select * from information_schema.character_sets;
查询某个字符集相关的排序规则
SHOW COLLATION LIKE 'utf8mb4%';
show charset;
或者:
select * from information_schema.character_sets;
SHOW COLLATION LIKE 'utf8mb4%';
( 本文完 )