您好,欢迎访问一九零五行业门户网

MySQL中DATE_FORMATE函数内置字符集解析_MySQL

bitscn.com
今天帮同事处理一个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 www.111cn.net 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
附后
下面是函数的参数说明:
%s, %s 两位数字形式的秒( 00,01, . . ., 59)
%i 两位数字形式的分( 00,01, . . ., 59)
%h 两位数字形式的小时,24 小时(00,01, . . ., 23)
%h, %i 两位数字形式的小时,12 小时(01,02, . . ., 12)
%k 数字形式的小时,24 小时(0,1, . . ., 23)
%l 数字形式的小时,12 小时(1, 2, . . ., 12)
%t 24 小时的时间形式(hh : mm : s s)
%r 12 小时的时间形式(hh:mm:ss am 或hh:mm:ss pm)
%p am 或p m
%w 一周中每一天的名称( sunday, monday, . . ., saturday)
%a 一周中每一天名称的缩写( sun, mon, . . ., sat)
%d 两位数字表示月中的天数( 00, 01, . . ., 31)
%e 数字形式表示月中的天数( 1, 2, . . ., 31)
%d 英文后缀表示月中的天数( 1st, 2nd, 3rd, . . .)
%w 以数字形式表示周中的天数( 0 = sunday, 1=monday, . . ., 6=saturday)
%j 以三位数字表示年中的天数( 001, 002, . . ., 366)
% u 周(0, 1, 52),其中sunday 为周中的第一天
%u 周(0, 1, 52),其中monday 为周中的第一天
%m 月名(january, february, . . ., december)
%b 缩写的月名( january, february, . . ., december)
%m 两位数字表示的月份( 01, 02, . . ., 12)
%c 数字表示的月份( 1, 2, . . ., 12)
%y 四位数字表示的年份
%y 两位数字表示的年份
%% 直接值“%”
更多详细内容请查看:http://www.111cn.net/database/mysql/56671.htm
bitscn.com
其它类似信息

推荐信息