15.3.3设置序列循环取值一cycleh属性 cycle选项用于指定序列的nextvalJ取值超出最大值时,从 序列的minvalue属性指定的值继续获取,并且可以周而复始, 获取无穷多次。 【示例l5-8】为了说明cyclet的功能及start with与minvalue 的区别,首先创建该序列,并为各选项指定特定值。 SQL>create sequence test_seq 2 start with 5 3 minvalue 1 4 maxvalue 30 5 increment by 1 6/ Sequence created—— cycle nextval minvalue 15-8 cycle start with minvalue SQL> create sequence test_seq 2 start with 5 3 minvalue 1 4 maxvalue 30 5 increment by 1 6 / Sequence created