Here’s a quickie… Calculate someone’s age with SQL:
select dob,
floor(datediff(day, dob, getDate()) / 365.25) as age
from personnel
elegant » being unusually effective and simple… do » the way.
Here’s a quickie… Calculate someone’s age with SQL:
select dob,
floor(datediff(day, dob, getDate()) / 365.25) as age
from personnel