select now(),date(now()),sysdate();
select curdate(),curdate()+0,curtime(),curtime()+0;
/*返回日期当月最后一天*/
select last_day('2008-12-02');
/*返回日期的星期几*/
select dayname('2008-12-02'),dayofweek('2008-12-02');
/*返回日期的年,月,日*/
select month('2008-12-02'),year('2008-12-02'),day('2008-12-02');
/*返回日期的小时,分,秒*/
select hour('10:05:03'),minute('10:05:03'),second('10:05:03');
select date_add('1998-01-02', interval 31 day),adddate('1998-01-02', 31);
select date_add('1998-01-02',interval 2 year);
select date_add('1998-01-02', interval 2 hour);
/*subdate(d,t):起始时间减去一段时间*/
select subdate('1998-01-02', interval 31 day),subdate('1998-01-02', 31);
/*addtime(d,t):起始时间d加入时间t*/
select addtime('1997-12-31 23:59:50','00:00:05'), addtime('23:59:50','00:00:05') ;
/*subtime(d,t):起始时间d减去时间t*/
select subtime('1997-12-31 23:59:50','00:00:05'), subtime('23:59:50','00:00:05');
/*datediff(d1,d2):返回起始时间d1和结束时间d2之间的天数*/
select datediff('1997-12-31 23:59:59','1997-12-30');
/*date_format(date,format):根据format字符串显示date值的格式*/
select date_format('2008-12-02 22:23:00', '%y %m %m %h:%i:%s');
/*str_to_date(str,format) 字符串转化为时间*/
select str_to_date('04/31/2004', '%m/%d/%y %h:%i:s');
/*
timestamp(expr) , timestamp(expr,expr2)
对于一个单参数,该函数将日期或日期时间表达式 expr 作为日期时间值返回.对于两个参数, 它将时间表达式 expr2添加到日期或日期时间表达式 expr 中,将theresult作为日期时间值返回
*/
select timestamp('2003-12-31'), timestamp('2003-12-31 12:00:00','12:00:00');
/*取当天0点0分,下一天0点0分*/
select timestamp(date(sysdate())),timestamp(adddate(date(sysdate()),1));
mysql常用日期函数
原创
©著作权归作者所有:来自51CTO博客作者maqian的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Mysql 常用函数
Mysql常用函数
mysql 常用函数 mysql函数 -
MySql常用日期时间函数
MySql常用日期时间函数
sql MySql -
MySQL查询日期类数据常用函数
MySQL查询日期类数据常用函数
数据 字段 字符串 返回结果 参数说明 -
mysql 日期函数大全 mysql常用日期函数
本文将演示以下4个 MySQL中的常用日期和时间函数。
MySQL curdate Now 函数 UNIX