日期:2014-05-16  浏览次数:20363 次

oracle 自增序列
create sequence payInfo_seq
start with 1
increment by 1
minvalue 1
maxvalue 99999
nocache
nocycle
insert into payinfo values(payInfo_seq.nextval,'hello','yourmother');