1.创建:
create sequence DG_C_COLUMN_id_Seq
increment by 1
start with 1
minvalue 1;
2.查询所有序列:
select * from user_sequences;
3.查询序列的next值:
select DG_C_TABLE_ID_SEQ.nextval from dual;
1.创建:
create sequence DG_C_COLUMN_id_Seq
increment by 1
start with 1
minvalue 1;
2.查询所有序列:
select * from user_sequences;
3.查询序列的next值:
select DG_C_TABLE_ID_SEQ.nextval from dual;