更新表字段编码格式
alter table `tableName` convert to character set utf8mb4 COLLATE utf8mb4_bin;
COLLATE utf8mb4_bin 的意义为:
*_bin: 表示的是binary case sensitive collation,也就是说是区分大小写的,如COLLATE utf8mb4_bin
*_cs: case sensitive collation,区分大小写,如 COLLATE utf8mb4_cs
*_ci: case insensitive collation,不区分大小写,如 COLLATE utf8mb4_ci