PostgreSQL Create Sequence
The PostgreSQL Create Sequence Tool allows users to visually create sequences.
The PostgreSQL Create Sequence tool contains the following options:
Sequence Name
Starts With
Increment By
Maximum Value
Minimum Value
Cache
Cycle
The following is an example of the SQL generated from the PostgreSQL Create Sequence Tool.
CREATE SEQUENCE public."TEST_SEQUENCE"
INCREMENT BY 1
NO MINVALUE
MAXVALUE 1000
START WITH 1
CYCLE