Hi All
I want to add a column to a table which will default to the current date and time on insert AND update. I found code that is supposed to work on Oralce 12c, but I get the error "missing right parenthesis":
alter table schemaname.tablename add (UPDATE_DT DATE DEFAULT SYSDATE ON UPDATE SYSDATE)
Is my information incorrect - is this actually not valid for Oracle 12c?
Thanks!