1 --创建序列,初始值为1,增量为1 2 create sequence SEQ_TEST increment by 1 start with 1 3 4 --获取序列 5 select SEQ_TEST.nextval from dual
本文共 192 字,大约阅读时间需要 1 分钟。
1 --创建序列,初始值为1,增量为1 2 create sequence SEQ_TEST increment by 1 start with 1 3 4 --获取序列 5 select SEQ_TEST.nextval from dual
转载于:https://www.cnblogs.com/shungdawei/archive/2011/12/09/2282345.html