首页 > 代码库 > MySQL DATE_FORMATE函数内置字符集的坑
MySQL DATE_FORMATE函数内置字符集的坑
今天帮同事处理一个SQL(简化过后的)执行报错:
mysql> select date_format(‘2013-11-19‘,‘Y-m-d‘) > timediff(‘2013-11-19‘, ‘2013-11-20‘);
ERROR 1267 (HY000): Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,NUMERIC) for operation ‘>‘
乍一看挺莫名其妙的,查了下手册,发现有这么一段:
The language used for day and month names and abbreviations is controlled by the value of the lc_time_names system variable (Section 9.7, “MySQL Server Locale Support”).
The DATE_FORMAT() returns a string with a character set and collation given by character_set_connection and collation_connection so that it can return month and weekday names containing non-ASCII characters.
也就是说,DATE_FORMATE() 函数返回的结果是带有字符集/校验集属性的,而 TIMEDIFF() 函数则没有字符集/校验集属性,我们来验证一下:
mysql> set names utf8;
mysql> select charset(date_format(‘2013-11-19‘,‘Y-m-d‘)), charset(timediff(‘2013-11-19‘, ‘2013-11-20‘));
+--------------------------------------------+-----------------------------------------------+
| charset(date_format(‘2013-11-19‘,‘Y-m-d‘)) | charset(timediff(‘2013-11-19‘, ‘2013-11-20‘)) |
+--------------------------------------------+-----------------------------------------------+
| utf8 | binary |
+--------------------------------------------+-----------------------------------------------+
mysql> set names gb2312;
mysql> select charset(date_format(‘2013-11-19‘,‘Y-m-d‘)), charset(timediff(‘2013-11-19‘, ‘2013-11-20‘));
+--------------------------------------------+-----------------------------------------------+
| charset(date_format(‘2013-11-19‘,‘Y-m-d‘)) | charset(timediff(‘2013-11-19‘, ‘2013-11-20‘)) |
+--------------------------------------------+-----------------------------------------------+
| gb2312 | binary |
+--------------------------------------------+-----------------------------------------------+
可以看到,随着通过 SET NAMES 修改 character_set_connection、collation_connection 值,DATE_FORMAT() 函数返回结果的字符集也跟着不一样。在这种情况下,想要正常工作,就需要将结果进行一次字符集转换,例如:
mysql> select date_format(‘2013-11-19‘,‘Y-m-d‘) > convert(timediff(‘2013-11-19‘, ‘2013-11-20‘) using utf8);
+----------------------------------------------------------------------------------------------+
| date_format(‘2013-11-19‘,‘Y-m-d‘) > convert(timediff(‘2013-11-19‘, ‘2013-11-20‘) using utf8) |
+----------------------------------------------------------------------------------------------+
| 1 |
+----------------------------------------------------------------------------------------------+
就可以了 :)
P.S,MySQL的版本:5.5.20-55-log Percona Server (GPL), Release rel24.1, Revision 217
--------------------------------------分割线--------------------------------------
知数堂 (http://zhishuedu.com)培训是由资深MySQL专家叶金荣、吴炳锡联合推出的专业优质培训品牌,主要有MySQL DBA实战优化和Python运维开发课程,是业内最有良心、最有品质的培训课程。
本文出自 “老叶茶馆” 博客,请务必保留此出处http://imysql.blog.51cto.com/1540006/1879883
本文出自 “老叶茶馆” 博客,请务必保留此出处http://imysql.blog.51cto.com/1540006/1880059
MySQL DATE_FORMATE函数内置字符集的坑
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。