国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

MySQL中DATE_FORMATE函數(shù)使用時的注意點(diǎn)

2024-07-24 13:07:12
字體:
供稿:網(wǎng)友

這篇文章主要介紹了MySQL中DATE_FORMATE函數(shù)使用時的注意點(diǎn),主要是針對其內(nèi)置的字符集使用時需要轉(zhuǎn)換而進(jìn)行說明,需要的朋友可以參考下

今天幫同事處理一個SQL(簡化過后的)執(zhí)行報錯:

 

 
  1. mysql> select date_format('2013-11-19','Y-m-d') > timediff('2013-11-19''2013-11-20');  
  2.  
  3. ERROR 1267 (HY000): Illegal mix of collations (utf8_general_ci,COERCIBLE) and (latin1_swedish_ci,NUMERICfor operation '>' 

乍一看挺莫名其妙的,查了下手冊,發(fā)現(xiàn)有這么一段:

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() 函數(shù)返回的結(jié)果是帶有字符集/校驗(yàn)集屬性的,而 TIMEDIFF() 函數(shù)則沒有字符集/校驗(yàn)集屬性,我們來驗(yàn)證一下:

 

 
  1. mysql> set names utf8; 
  2. mysql> select charset(date_format('2013-11-19','Y-m-d')), charset(timediff('2013-11-19''2013-11-20')); 
  3. +--------------------------------------------+-----------------------------------------------+ 
  4. | charset(date_format('2013-11-19','Y-m-d')) | charset(timediff('2013-11-19''2013-11-20')) | 
  5. +--------------------------------------------+-----------------------------------------------+ 
  6. | utf8 | binary | 
  7. +--------------------------------------------+-----------------------------------------------+ 
  8.  
  9. mysql> set names gb2312; 
  10. mysql> select charset(date_format('2013-11-19','Y-m-d')), charset(timediff('2013-11-19''2013-11-20')); 
  11. +--------------------------------------------+-----------------------------------------------+ 
  12. | charset(date_format('2013-11-19','Y-m-d')) | charset(timediff('2013-11-19''2013-11-20')) | 
  13. +--------------------------------------------+-----------------------------------------------+ 
  14. | gb2312 | binary | 
  15. +--------------------------------------------+-----------------------------------------------+ 

可以看到,隨著通過 SET NAMES 修改 character_set_connection、collation_connection 值,DATE_FORMAT() 函數(shù)返回結(jié)果的字符集也跟著不一樣。在這種情況下,想要正常工作,就需要將結(jié)果進(jìn)行一次字符集轉(zhuǎn)換,例如:

 

 
  1. mysql> select date_format('2013-11-19','Y-m-d') > convert(timediff('2013-11-19''2013-11-20') using utf8); 
  2. +----------------------------------------------------------------------------------------------+ 
  3. | date_format('2013-11-19','Y-m-d') > convert(timediff('2013-11-19''2013-11-20') using utf8) | 
  4. +----------------------------------------------------------------------------------------------+ 
  5. | 1 | 
  6. +----------------------------------------------------------------------------------------------+ 

就可以了 :)

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 绥中县| 达尔| 绥阳县| 泰来县| 蓝山县| 黄大仙区| 寻甸| 兴山县| 策勒县| 太和县| 黔西县| 克拉玛依市| 成安县| 汪清县| 朝阳市| 扬州市| 泸定县| 公安县| 三门峡市| 会昌县| 新巴尔虎右旗| 桃江县| 舒兰市| 井研县| 乌拉特中旗| 中卫市| 博乐市| 永年县| 永福县| 长白| 元氏县| 吉隆县| 板桥市| 汉沽区| 辽宁省| 恭城| 正蓝旗| 鄂尔多斯市| 康保县| 孟津县| 远安县|