溫馨提示×

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

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

MySQL日期加減函數(shù)怎么用?

發(fā)布時(shí)間:2020-05-20 09:14:00 來(lái)源:億速云 閱讀:279 作者:Leah 欄目:MySQL數(shù)據(jù)庫(kù)

今天小編就為大家?guī)?lái)一篇介紹MySQL日期加減函數(shù)的文章。小編覺(jué)得挺實(shí)用的,為此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。

1. addtime()  

為日期加上指定秒數(shù)

select addtime(now(),1); -- 加1秒

2. adddate()  

有兩種用法,第二個(gè)參數(shù)直接填數(shù)字的話是為日期加上指定天數(shù),填interval的話是為日期加上指定的interval時(shí)間

select adddate(now(),1); -- 加1天
select adddate(now(), interval 1 day); -- 加1天
select adddate(now(), interval 1 hour); --加1小時(shí)
select adddate(now(), interval 1 minute); -- 加1分鐘
select adddate(now(), interval 1 second); -- 加1秒
select adddate(now(), interval 1 microsecond); -- 加1毫秒
select adddate(now(), interval 1 week); -- 加1周
select adddate(now(), interval 1 month); -- 加1月
select adddate(now(), interval 1 quarter); -- 加1季
select adddate(now(), interval 1 year); -- 加1年

3. date_add()  

為日期增加一個(gè)時(shí)間間隔,這個(gè)只能使用interval時(shí)間作為參數(shù),用法和adddate()一致

select date_add(now(), interval 1 day); -- 加1天
select date_add(now(), interval 1 hour); -- 加1小時(shí)
select date_add(now(), interval 1 minute); -- 加1分鐘
select date_add(now(), interval 1 second); -- 加1秒
select date_add(now(), interval 1 microsecond); -- 加1毫秒
select date_add(now(), interval 1 week); -- 加1周
select date_add(now(), interval 1 month); -- 加1月
select date_add(now(), interval 1 quarter); -- 加1季
select date_add(now(), interval 1 year); -- 加1年

4. subtime()  

為日期減去指定秒數(shù)

select subtime(now(), 1); -- 減1秒

5. subdate()  

與adddate()函數(shù)用法一致,有兩種用法,第二個(gè)參數(shù)直接填數(shù)字的話是為日期減去指定天數(shù),填interval的話是為日期減去指定的interval時(shí)間

select subdate(now(),1); -- 減1天
select subdate(now(), interval 1 day); -- 減1天
select subdate(now(), interval 1 hour); --減1小時(shí)
select subdate(now(), interval 1 minute); -- 減1分鐘
select subdate(now(), interval 1 second); -- 減1秒
select subdate(now(), interval 1 microsecond); -- 減1毫秒
select subdate(now(), interval 1 week); -- 減1周
select subdate(now(), interval 1 month); -- 減1月
select subdate(now(), interval 1 quarter); -- 減1季
select subdate(now(), interval 1 year); -- 減1年

6. date_sub()   

與date_add()函數(shù)用法一致,為日期減去一個(gè)時(shí)間間隔,這個(gè)只能使用interval時(shí)間作為參數(shù)

select date_sub(now(), interval 1 day); -- 減1天
select date_sub(now(), interval 1 hour); --減1小時(shí)
select date_sub(now(), interval 1 minute); -- 減1分鐘
select date_sub(now(), interval 1 second); -- 減1秒
select date_sub(now(), interval 1 microsecond); -- 減1毫秒
select date_sub(now(), interval 1 week); -- 減1周
select date_sub(now(), interval 1 month); -- 減1月
select date_sub(now(), interval 1 quarter); -- 減1季
select date_sub(now(), interval 1 year); -- 減1年

關(guān)于MySQL日期加減函數(shù)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。

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

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

AI