查詢方法:1、用「show variables like 'character%'」指令,可查詢整個函式庫的編碼;2、用「show table status from 表名like "%yxfx_zxxx_fyb%"」指令,可查詢指定表編碼。
本教學操作環境:windows7系統、mysql8版本、Dell G3電腦。
mysql查詢編碼
方式一:查詢整個函式庫的編碼
show variables like 'character%'
其中,
character_set_client為客戶端編碼方式;
character_set_connection為建立連線使用的編碼;
character_set_database資料庫的編碼;
character_set_results結果集的編碼;
character_set_server資料庫伺服器的編碼;
只要保證以上四個採用的編碼方式一樣,就不會出現亂碼問題。
方式二:查詢指定表的編碼
使用指令:
show table status from 表名 like "%yxfx_zxxx_fyb%"
【相關推薦:mysql影片教學 】
以上是mysql如何查詢編碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!