I have to store some intervals in mssql db. I'm aware that the datetime's accuracy is approx. 3.3ms (can only end 0, 3 and 7). But when I calculate intervals between datetimes I see that the result can only end with 0, 3 and 6. So the more intervals I sum up the more precision I loose. Is it possible to get an accurate DATEDIFF in milliseconds ?
declare @StartDate datetime
declare @EndDate datetime
set @StartDate='2010-04-01 12:00:00.000'
set @EndDate='2010-04-01 12:00:00.007'
SELECT DATEDIFF(millisecond, @StartDate, @EndDate),@EndDate-@StartDate, @StartDate, @EndDate
I would like to see 7 ad not 6. (And it should be as fast as possible)
** update **
I can see DATEDIFF values ending not just with 0, 3, 6 but also 4, 7 (there might be others as well) but the thing is that they are still inaccurate. The solution suggested by Alex is working. The same can be achived if you don't wan't to remember the correct datetime format with:
SELECT DATEDIFF(SECOND, @StartDate, @EndDate)*1000 + DATEPART(MILLISECOND , @EndDate) - DATEPART(MILLISECOND , @StartDate)
I still wonder why DATEDIFF(millisecond, @StartDate, @EndDate)
is inaccurate ?