I have created a table in SSMS, and it has the following fields:
- NAME varchar(50)
- BIRTHDATE date
- AGE decimal(3,0)
I want to use a formula for the AGE field, in the Table Designer to calculate the person's age based on their BIRTHDATE and the current date.
For example, NAME = 'Joe Blow' and BIRTHDATE = '1/1/1970'. I would like the AGE to be able to calculate this and return the age of '46'.