Pembaruan Oracle dengan urutan

CREATE SEQUENCE seq START WITH 1 INCREMENT BY 1;
UPDATE my_table SET col_id = seq.nextval;
VasteMonde