一张表的主键 ,怎么设置可以让它的值为00-99之间 其中10以前的数为 01,02,03,04......
------解决方案--------------------
- SQL code
scott@ORA11GR2> create sequence seq minvalue 1 maxvalue 100;Sequence created.scott@ORA11GR2> select to_char(seq.nextval-1, '09') from dual;TO_--- 00scott@ORA11GR2> select to_char(seq.nextval-1, '09') from dual;TO_--- 01scott@ORA11GR2> select to_char(seq.nextval-1, '09') from dual;TO_--- 02