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');
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');