[Err] 1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICI

用navicat(其它工具一样)查询sql语句,报错:
在这里插入图片描述
分析:异常是排序规则编码混乱;我mysql是8.0.12版本,本次sql操作是连表查询,应该是两个表的编码格式不同所致,mysql8.0.1之后的默认COLLATE为utf8mb4_0900_ai_ci;
查看当前数据库默认编码:
show variables where Variable_name like ‘collation%’;

查看sql中关联的表:
show create table table_name;
[Err] 1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICI_第1张图片
[Err] 1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICI_第2张图片
发现,关联表2中用到的字段没有加入编码规则,找到原因!
解决方案:
给表2设置编码: alter table table_name default character set utf8mb4 collate=utf8mb4_general_ci;
在这里插入图片描述
给表2字段设置编码:ALTER TABLE table_name convert to CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
在这里插入图片描述
查询表2编码:show create table 表2;
[Err] 1267 - Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_0900_ai_ci,IMPLICI_第3张图片
再次执行sql,正常查到结果集!

你可能感兴趣的:(sql语句,sql查询,sql字段编码)