mysql註解是中文亂碼的解決方法:先用「show variables like」指令檢視資料庫與服務端的字元集設定;然後執行語句為「set collation_server=utf8_general_ci;」即可。
推薦:《mysql影片教學》
mysql表註解亂碼
問題
執行語句: alter table TABLE_XXX comment '中文號碼';
結果: use information_schema;
select * from TABLES where TABLE_SCHEMA=’mydb’ and TABLE_NAME=’TABLE_XXX’ TABLE_XXX 的注释为乱码
#檢查系統
用show variables like “%colla%”;show varables like “%char%”;這兩個指令查看資料庫與服務端的字元集設定
#修改
set collation_server=utf8_general_ci; set collation_connection=utf8_general_ci;
以上是mysql註解是中文亂碼怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!