让mysql支持emojy神情存储
让mysql支持emojy表情存储
查看MySQL数据库服务器和数据库MySQL字符集:
查看MySQL数据表(table)的MySQL字符集:
查看MySQL数据列(column)的MySQL字符集:
查看MySQL数据库服务器和数据库MySQL字符集:
show variables like '%char%';
查看MySQL数据表(table)的MySQL字符集:
show table status from 数据库名 like '%表名%';
查看MySQL数据列(column)的MySQL字符集:
show full columns from 表名;
ALTER TABLE 表名 CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;