mysql 日期加减得年数_MySQL 日期加减函数汇总

ffdfd53f509d5204b27d87f472b49c03.png

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月select 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年

推荐:《mysql教程》

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值