1.先添加字段。
alter table tablename1 add(columnId int);
2.修改主键字段的值为rownum的值
update tablename1 b set B.columnId= rownum;commit;
3.直接在PL/SQL等工具修改该字段为主键。
commit:完成
1.先添加字段。
alter table tablename1 add(columnId int);
2.修改主键字段的值为rownum的值
update tablename1 b set B.columnId= rownum;commit;
3.直接在PL/SQL等工具修改该字段为主键。
commit:完成