Viewing 4 posts - 1 through 4 (of 4 total)
April 11, 2018 at 9:38 am
April 10, 2018 at 7:19 am
Here's mine...CREATE FUNCTION YearsDiff(@Born date,@AsOf date) RETURNS int AS
BEGIN
DECLARE @y int
SET @y = DATEDIFF(YEAR,@Born,@AsOf)
IF DATEADD(year,@y,@Born) > @AsOf SET @y -= 1
April 9, 2018 at 12:11 pm
I'm brand new to R and not really sure what I was doing, but I was able to make it through this with a new install of RevolutionROpen and the...
December 7, 2015 at 9:15 am
Viewing 4 posts - 1 through 4 (of 4 total)