-- Create sequence
create sequence ID_SEQUENCE
minvalue 1
maxvalue 9999999999999999999999999999
start with 100001
increment by 1
cache 1000;
insert into 表名 values(ID_SEQUENCE.Nextval,'**','PICC0100001');
create sequence ID_SEQUENCE
minvalue 1
maxvalue 9999999999999999999999999999
start with 100001
increment by 1
cache 1000;
insert into 表名 values(ID_SEQUENCE.Nextval,'**','PICC0100001');
5877

被折叠的 条评论
为什么被折叠?



