RDS需要将数据库从GBK转换成UTF8,请问怎么操作
建议通过SQL来更改,如果库表比较多的话,可以通过以下方式批量生成更改字符集的SQL:1.生成转换表的sql select concat('alter table ', table_schema,'.',table_name,' convert to character set utf8mb4;') from information_schema.tables where table_schema in ('需要转换的数据库名')2.生成转换数据库的sqlselect concat('alter database ',SCHEMA_NAME,' CHARACTER SET = utf8mb4;') from information_schema.SCHEMATA where schema_name in ('需要转换的数据库名')
赞0
踩0