— 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
create sequence ID_SEQUENCE
minvalue 1
maxvalue 9999999999999999999999999999
start with 100001
increment by 1
cache 1000;
insert into 表名 values(ID_SEQUENCE.Nextval,’**’,’PICC0100001′); <