How to Create a Sequence in Oracle
Here is the syntax to create a sequence. This can be used to create primary keys or to generate a number sequence. The below sequence will start with 1 and increment by 1. There is no MAXVALUE defined so the sequence’s max value will default to 999999999999999999999999999. The CACHE is set to 50 so it [...]