mysql字符集(utf-8)
- 字符集查询
- SHOW VARIABLES LIKE 'character%';
- 字符集设置
- SET character_set_client = utf8 ;
- SET character_set_connection = utf8 ;
- SET character_set_database = utf8 ;
- SET character_set_results = utf8 ;
- SET character_set_server = utf8 ;
- SET collation_connection = utf8 ;
- SET collation_database = utf8 ;
- SET collation_server = utf8 ;
原文链接:http://www.jxszl.com/biancheng/shujuku/445406.html