标签:span har int task select date abc box line
create sequence seq_abc_taskid maxvalue 999; --你确定流水号只要3位?
使用它的下一个值用: seq_abc_taskid.nextval
查询当前值用:seq_abc_taskid.currval
比如你现在要插入一行到abc,你可以
insert into abc values (1,seq_abc_taskid.nextval,....);
我想要的是日期加上这个流水号,这要怎么处理?
就比如20140428002,前8位日期加上后3位流水号
select to_char(sysdate,‘yyyymmdd‘)||seq_abc_taskid.nextval from dual;
标签:span har int task select date abc box line
原文地址:http://www.cnblogs.com/CandiceW/p/6869162.html