i have a table which has system create date and system update date......
so my table definition is
create table Mytable
(
id integer not null,
content char(100),
create_date date ,
update_date date
)
is it possible that whenever i create an id the create date and update date get sets automatically to current date and when i update the same id contents only the update date gets updated to current date.....
i know this can be done using trigggers.....but is it possible that this can be done using the create table definition only...