MySQL 日期时间加减
强烈推介IDEA2020.2破解激活,IntelliJ IDEA 注册码,2020.2 IDEA 激活码
大家好,我是架构君,一个会写代码吟诗的架构师。今天说一说MySQL 日期时间加减,希望能够帮助大家进步!!!
now (); 当前具体的日期和时间
curdate (); 当前日期
curtime(); 当前时间
1.MySQL加减某个时间间隔
设置当前日期变量
set @dt = now(); //设置当前日期
select @dt; //查询变量值
加减某个时间间隔函数date_add()与date_sub()
date_add('某个日期时间',interval 1 时间种类名);
示例:
select date_add(@dt, interval 1 year); //加1年
select date_add(@dt, interval 1 month); //加1月
quarter:季,week:周,day:天,hour:小时,minute:分钟,second:秒,microsecond:毫秒
注:也可以不用变量,直接加减某个时间,如:select date_add('1998-01-01', interval 1 day);
2.日期相减
datediff(date1,date2):两个日期相减,date1减去date2得到相减之后的天数
timediff(time1,time2):两个时间相减 time1减time2,返回差值。
select timediff('2019-06-03 12:30:00', '2019-06-03 12:29:30');
等同于
select timediff('12:30:00', '12:29:30');
原文链接: https://blog.csdn.net/qq_39588003/article/details/90758827
社区
活动
资源
关于
腾讯云开发者
扫码关注腾讯云开发者
领取腾讯云代金券
热门产品
热门推荐
更多推荐
Copyright © 2013 - 2024 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号: 粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2024 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有