1. 程式人生 > >mysql改變表的編碼字符集,將utf8改為utf8mb4

mysql改變表的編碼字符集,將utf8改為utf8mb4

主要功能,utf8mb4支援四位元組

--檢視建表語句,預設編碼utf8

show create table topic_video_comment ;


--查看錶中每個欄位的字符集
show full fields from topic_video_comment;

--改變表的編碼,為utf8mb4
alter table `topic_video_comment`   convert to character set  utf8mb4;