如何计算两个时间点的差?
需要精确到秒,最后计算两个时间差的秒数?
如何实现,这样可以吗?
DECLARE @StartDate datetime
DECLARE @EndDate datetime
DECLARE @ADIDAS datetime
SET @StartDate='2000-01-01 00:00:00' --统计的开始日期
SET @EndDate='2007-01-01 00:00:00' --统计的结束日期
set @ADIDAS=@EndDate-@StartDate
print(@ADIDAS)