溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

MySQL層比較函數(shù)的調(diào)用方式

發(fā)布時(shí)間:2021-09-13 15:00:40 來源:億速云 閱讀:108 作者:chen 欄目:MySQL數(shù)據(jù)庫

這篇文章主要介紹“MySQL層比較函數(shù)的調(diào)用方式”,在日常操作中,相信很多人在MySQL層比較函數(shù)的調(diào)用方式問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”MySQL層比較函數(shù)的調(diào)用方式”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!


一、問題來源

最近遇到一個(gè)日期比較的問題如下:

root@localhost:test:10:25:48>select from_unixtime(1596680255);
+---------------------------+
| from_unixtime(1596680255) |
+---------------------------+
| 2020-08-06 10:17:35       |
+---------------------------+
1 row in set (0.00 sec)
root@localhost:test:10:25:52>select from_unixtime(1596680255,'%Y-%m-%d') < '2020-08-1';
+----------------------------------------------------+
| from_unixtime(1596680255,'%Y-%m-%d') < '2020-08-1' |
+----------------------------------------------------+
|                                                  1 |
+----------------------------------------------------+
1 row in set (2.70 sec)
root@localhost:test:10:25:59>select from_unixtime(1596680255) < '2020-08-1';
+-----------------------------------------+
| from_unixtime(1596680255) < '2020-08-1' |
+-----------------------------------------+
|                                       0 |
+-----------------------------------------+
1 row in set (2.36 sec)

按理來說from_unixtime(1596680255,’%Y-%m-%d’) < ‘2020-08-1’ 應(yīng)該是false才對,但是返回為true,因此懷疑為字符串比較的方式

二、問題驗(yàn)證

首先關(guān)閉gtid通過create table as 來驗(yàn)證一下字段類型如下:

create table testit951
as
select from_unixtime(1596678161,'%Y-%m-%d') as "tt"
create table testit952
as
select from_unixtime(1596678161) as "tt"

通過這種方式發(fā)現(xiàn)兩種建表字段為varchar和datetime類型。通過源碼驗(yàn)證可以看到如下:

Breakpoint 5, Arg_comparator::compare_string (this=0x7fffe40167c0) at /cdh/mysqldebug/percona-server-5.7.29-32/sql/item_cmpfunc.cc:1672
1672      if ((res1= (*a)->val_str(&value1)))
(gdb) c
Continuing.
Breakpoint 4, Arg_comparator::compare_datetime (this=0x7fffe40164c8) at /cdh/mysqldebug/percona-server-5.7.29-32/sql/item_cmpfunc.cc:1509
1509      THD *thd= current_thd;
(gdb) c
Continuing.

可以看到內(nèi)部通過了string和datetime兩種類型來比較。因此得到證明。最后留下比較函數(shù)的位置:
Item_cmpfunc.cc
MySQL層比較函數(shù)的調(diào)用方式

到此,關(guān)于“MySQL層比較函數(shù)的調(diào)用方式”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI