您好,登錄后才能下訂單哦!
這篇文章主要介紹“MySQL層比較函數的調用方式”,在日常操作中,相信很多人在MySQL層比較函數的調用方式問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”MySQL層比較函數的調用方式”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
最近遇到一個日期比較的問題如下:
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’ 應該是false才對,但是返回為true,因此懷疑為字符串比較的方式
首先關閉gtid通過create table as 來驗證一下字段類型如下:
create table testit951 as select from_unixtime(1596678161,'%Y-%m-%d') as "tt" create table testit952 as select from_unixtime(1596678161) as "tt"
通過這種方式發現兩種建表字段為varchar和datetime類型。通過源碼驗證可以看到如下:
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.
可以看到內部通過了string和datetime兩種類型來比較。因此得到證明。最后留下比較函數的位置:
Item_cmpfunc.cc
到此,關于“MySQL層比較函數的調用方式”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。