mysql⽇期加减返回⽇_MySQL⽇期加减函数详解
1. addtime()
为⽇期加上指定秒数
select addtime(now(),1); -- 加1秒
2. adddate()
有两种⽤法,第⼆个参数直接填数字的话是为⽇期加上指定天数,填interval的话是为⽇期加上指定的interval时间
select adddate(now(),1); -- 加1天
select adddate(now(), interval 1 day); -- 加1天
select adddate(now(), interval 1 hour); --加1⼩时
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()
为⽇期增加⼀个时间间隔,这个只能使⽤interval时间作为参数,⽤法和adddate()⼀致
select date_add(now(), interval 1 day); -- 加1天
select date_add(now(), interval 1 hour); -- 加1⼩时
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()
为⽇期减去指定秒数
select subtime(now(), 1); -- 减1秒
5. subdate()
与adddate()函数⽤法⼀致,有两种⽤法,第⼆个参数直接填数字的话是为⽇期减去指定天数,填interval的话是为⽇期减去指定的interval 时间
select subdate(now(),1); -- 减1天
select subdate(now(), interval 1 day); -- 减1天
select subdate(now(), interval 1 hour); --减1⼩时
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⽉
mysql下载add produceselect subdate(now(), interval 1 quarter); -- 减1季
select subdate(now(), interval 1 year); -- 减1年
6. date_sub()
与date_add()函数⽤法⼀致,为⽇期减去⼀个时间间隔,这个只能使⽤interval时间作为参数select date_sub(now(), interval 1 day); -- 减1天
select date_sub(now(), interval 1 hour); --减1⼩时
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年
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论