oracle sequence 创建语句备份

create sequence seq_

  minvalue 0

  maxvalue 999999999999

  start with  0

  increment by 1

  nocache;


你可能感兴趣的:(oracle,sequence,start,create)