Mysql change column collation and character set of information schema

后端 未结 3 1405
夕颜
夕颜 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:52

    To change the character set and collation for all columns in an existing table, use:

    ALTER TABLE tbl_name CONVERT TO CHARACTER SET charset_name [COLLATE collation_name];
    

提交回复
热议问题