MySQL DATE_FORMATE函數內建字元集的坑

來源:互聯網
上載者:User

標籤:mysql faq   字元集   

今天幫同事處理一個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個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.