i'm trying to use the Datediff function to give me the years off a user but this is more complicated than i thought.
SELECT DATEDIFF( DD,'1963-07-22','2016-07-23')
This will give me 19360 Days i think that is because 2016 have a Leap Year and that is fine.
what i would like to do is get the YEAR and not the days.
if i change the interval from DD to YY(YYYY) it only calculates the year.