I like to update a new created field [date]
with the fields [day],[month],[year].
I tried :
update name-of-table
set datepart("yyyy", date) = [year],
set datepart("mm",date) = [month],
set datepart("dd", date) = [day];
This is not right as I get an error message.
Apprciate your advice to do this right.
Thanks in advance ,
Gunter
with the fields [day],[month],[year].
I tried :
update name-of-table
set datepart("yyyy", date) = [year],
set datepart("mm",date) = [month],
set datepart("dd", date) = [day];
This is not right as I get an error message.
Apprciate your advice to do this right.
Thanks in advance ,
Gunter