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