mysql改表的字元集的方法:1、修改表的編碼為utf8,程式碼為【alter table store_warehouse convert to character set utf8;】;2、檢視表中每個欄位的字元集。
mysql改表的字元集的方法:
--修改表的編碼為utf8
alter table store_warehouse convert to character set utf8;
--檢視表中每個欄位的字元集
show full fields from store_warehouse;
相關免費學習推薦:(視訊)
以上就是mysql如何改表的字元集的詳細內容,更多請關注TW511.COM其它相關文章!