摘要: 1、创建序列: create sequence seq_xx --创建序列名称increment by 1 --增长幅度start with 1 --初始值maxvalue 9999999999999999; --最大值 2、查询序列: select seq_xx.nextval from dual 阅读全文
posted @ 2019-12-18 14:47 小生怕痒 阅读(518) 评论(0) 推荐(0) 编辑