Hi Team,
create sequence s increment by 10 start with 100 minvalue 5 maxvalue 200 cycle cache 20;
I have created this sequence, but I am not able to understand whats the purpose of minvalu 5. I am able to get the value of current and next using below command, then why we have minval..
select s.nextval from dual;
select s.currval from dual;