mySQL 时间、日期加减运算语句

select timediff('23:40:00', ' 18:30:00'); -- 两时间相减


SELECT   substring( timediff('23:40:00', ' 18:30:00'),1,5) ----“05:10”相减返回小时:分钟

select datediff('2008-08-08', '2008-08-01'); -- 7      -----两日期相减


select TO_DAYS('2008-09-08')-TO_DAYS('2008-08-08')     -----两日期相减

SELECT   substring( '2009-06-17 10:00:00',   1,   10   )   ----从datetime中提取“日期”

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/14670217/viewspace-614694/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/14670217/viewspace-614694/

你可能感兴趣的:(mySQL 时间、日期加减运算语句)