I have a table where the ID sequence goes like 01,02 and so on (I have a few pre-inserted values). When I try to insert a new row there (not specifying the ID explicitly, but rather values for other columns) it tells me that the default value is "1" which is the same as "01" and can't be inserted. How to fix it, thank you!
You can use START WITH argument while creating the sequence.
Example:
CREATE SEQUENCE sequenceName
START WITH 1
INCREMENT BY 1 ;
For more documentation go through the link