fairyguo 发表于 2018-10-9 09:41:46

MySQL字符集的问题总结

SET character_set_client = utf8 ;  
SET character_set_connection = utf8 ;
  
SET character_set_results = utf8 ;
  
SET character_set_database = utf8 ;
  
SET character_set_server = utf8 ;
  
SET collation_connection = utf8 ;
  
SET collation_database = utf8 ;
  
SET collation_server = utf8 ;


页: [1]
查看完整版本: MySQL字符集的问题总结