i want to set default value as column for existing table,
example : create table t(a Number(22), b NUMBER(22)
;
i jsut want to set default value for column B as column A
.
I know we cannot do like this, could any one suggest an alternate way to do so..
You could use an ON INSERT trigger:
Share and enjoy.