mysql 存储过程中报Illegal mix of collations
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 存储过程中报Illegal mix of collations相关的知识,希望对你有一定的参考价值。
我写了一个存储过程,里边有一个游标,然后遍历游标,根据遍历的结果update 另外一张表的值,这是大体情况;
问题是在update的时候报:Illegal mix of collations (utf8_unicode_ci,IMPLICIT) and (utf8_general_ci,IMPLICIT)错误。
表和字段的collate都是utf8_unicode_ci,但是server的是utf8_general_ci,还不能改!
没办法只能在存储过程中转换!
解决方法:将比较等式一边进行字符串转换,如改为“CONVERT(变量 USING utf8) COLLATE utf8_unicode_ci”
以上是关于mysql 存储过程中报Illegal mix of collations的主要内容,如果未能解决你的问题,请参考以下文章
执行mysql语句报错 Illegal mix of collations……
MySQL Error: Illegal mix of collations for operation 'concat'
MySQL SQL error: #1271 - Illegal mix of collations for operation 'UNION'
mysql5.6修改字符编码,ERR:Illegal mix of collations for operation 'concat'
mysql union语句报错:Error Code: 1271. Illegal mix of collations for operation ‘UNION‘