DATEDIFF
Description
This function returns the count (as a signed integer value) of the specified datepart boundaries crossed between the specified startdate and enddate. (DATEDIFF in Transact-SQL).
Sample Source Pattern
Syntax
DATEDIFF ( datepart , startdate , enddate )
Examples
Code:
SELECT DATEDIFF(year,'2005-12-31 23:59:59.9999999', '2006-01-01 00:00:00.0000000');
Result:
DIFF|
----+
1|
Last updated