解决:ERROR 1267 (HY000): Illegal mix of collations

  解决ERROR 1267 (HY000): Illegal mix of collations (gbk_chinese_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation 'like'

    出现这个错误是因为编码不一致造成的

    如查询:

SELECT * FROM `dede_archives` WHERE `title` LIKE '%http://www.mycodes.net%' LIMIT 0,1000;

   出现错误!

    那么解决也简单

    设置编码

    如运行:

mysql> set names gbk; 

在运行就不会错误了!

    解决ERROR 1267 (HY000): Illegal mix of collations (gbk_chinese_ci,IMPLICIT) and (latin1_swedish_ci,COERCIBLE) for operation 'like'完毕!

posted @ 2013-12-18 20:24  撑着破伞去看雨  阅读(402)  评论(0)    收藏  举报