Here's a code snippet to demonstrate the functions you will need:
declare @myDate datetime
set @myDate = '1/1/2001'
select @myDate as StartDate, getdate() as today, DATEDIFF(YEAR, @myDate, GETDATE()) as years
Just replace the datetime variable with your column name in a "select" from the table you need, and you should be fine.
Good luck, and good coding!