mysql的字符集支持(character set support)有两个方面: 字符集(character set)和排序方式(collation)。mysql对于字符集的支持细
notice:文章基于ubuntu系统而写
1.关于mysql字符集mysql的字符集支持(character set support)有两个方面:
字符集(character set)和排序方式(collation)。
mysql对于字符集的支持细化到四个层次: 服务器(server),数据库(database),数据表(table)和连接(connection)。
mysql对于字符集的指定可以细化到一个数据库,,一张表,一列,应该用什么字符集。
2.查看mysql字符集2.1.查看字符集的设置mysql> show variables like 'character_set_%';
2.2.查看字符集排序设置mysql> show variables like 'collation_%';