Answers for "oracle update with sequence"

SQL
1

oracle update with sequence

CREATE SEQUENCE seq START WITH 1 INCREMENT BY 1;
UPDATE my_table SET col_id = seq.nextval;
Posted by: Guest on January-27-2022

Code answers related to "SQL"

Browse Popular Code Answers by Language