Mysql change column collation and character set of information schema

后端 未结 3 1406
夕颜
夕颜 2020-12-28 18:09

I want to change column collation and character set of system database information_schema...

Can anyone give any input on how to do this? Is there any special priv

3条回答
  •  心在旅途
    2020-12-28 18:50

    alter table some_table convert to character set utf8;
    

    awesome that worked great as far as i can tell for me, now i can use chinese in that tables!! and i can remove all the utf8_encode() utf8_decode() throughout my site!

提交回复
热议问题