Possible Duplicate:
How to calculate age in T-SQL with years, months, and days
I'm simply trying to calc age (in years) using a birthdate variable
1932-04-29 00:00:00.000
and SYSDATETIME( ) in SQL Server, where by
SELECT year(Sysdatetime() - Birthdate) as Age
produces (surprisingly) : 1980
What did I miss? I expected to get 80!