码迷,mamicode.com
首页 > 数据库 > 详细

sql 计算两时间或日期 的相差的 年、 月、 日、时、分、秒,年、月、日分别的提取

时间:2014-05-16 08:01:44      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   c   http   int   

--年、月、日、时、分、秒
datediff(yy,date1,date2)
datediff(m,date1,date2)
datediff(d,date1,date2)
datediff(hh,date1,date2)
datediff(n,date1,date2)
datediff(s,date1,date2)
datediff(ms,date1,date2)


--YEAR(‘2008-11-2 00:00:00‘)  --年
--MONTH(‘2008-11-2 00:00:00‘)  --月
--DAY(‘2008-11-2 00:00:00‘)  --日


--DATEPART ( datepart , date )
print DATEPART(MM,‘2008-8-2 00:00:00‘)


print YEAR(‘2008-11-2 00:00:00‘) + ‘ - ‘ +  MONTH(‘2008-11-2 00:00:00‘) + ‘ - ‘ + DAY(‘2008-11-2 00:00:00‘)
 
摘自http://blog.csdn.net/tiangaojie123abc/article/details/16806927

sql 计算两时间或日期 的相差的 年、 月、 日、时、分、秒,年、月、日分别的提取,布布扣,bubuko.com

sql 计算两时间或日期 的相差的 年、 月、 日、时、分、秒,年、月、日分别的提取

标签:blog   class   code   c   http   int   

原文地址:http://www.cnblogs.com/wsea/p/3726012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!