I have a table with two rows "birthday" and "age". Actually the row "age" is empty.
How can I with a simple update set my age from the birthday ?
create table ex(
birthday nvarchar(50),
age int
)
insert into ex values ('02-04-1962',null)
select * from ex
--update ex set age = ....