For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hi,
I need to update 2 column of the same table with the same sequence number.
update table
set column1=seq.nextval(),
column2=seq.nextval();
Can this works?
Database version 11.2
Regards