problem:
display age with sql command

solution:
sql command:
SELECT     DATEDIFF(mm, dateOfBirth, GETDATE()) / 12 AS age
FROM         someTable

it wil display age ^^V