I cant seem to find any information regarding create sequences.
If there is an existing database and a table PEOPLE has primary key SIN, if I wanted to generate Primary Keys. How would I do this given that the primary keys are RANDOM. Essentially I was thinking this would be easy if I just have to count the number of rows and set that as my minimum in my create sequence. However, given that the primary keys in the table are random how would I implement the create sequence? If I just want to add new primary keys that have values incremented from the previous inserted values.
Or does create sequence check this automatically for me?