|
Hi Erman,
I've created a sequence like this:
SQL> Create sequence emp_sequence start with 1
increment by 1
minvalue 1
maxvalue 10000;
But then when records are inserted in a table, it does not start with 1. It just starts with a random number.
Thanks.
|