MySQL Variables character_set_system 数据库 参数变量解释及正确配置使用
本站中文解释
character_set_system 是 MySQL 服务器级别的编码,用来在不同数据库之间或者一条 SQL 语句中处理字符集编码之间的转换。MySQL 的默认值是 latin1,可以通过修改 my.cnf 文件中的 [mysqld] 部分中添加 character_set_system=utf8 并重启数据库来修改。
官方英文解释
character_set_system
System Variable | character_set_system |
---|---|
Scope | Global |
Dynamic | No |
Type | String |
Default Value | utf8 |
The character set used by the server for storing identifiers.
The value is always utf8
.