主要功能,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;
主要功能,utf8mb4支持四字节
--查看建表语句,默认编码utf8
show create table topic_video_comment ;