Name: | sq_example |
OID: | 16443 |
Owner: | postgres |
Current value: | 1 |
Minimum: | 1 |
Maximum: | 9223372036854775807 |
Increment: | 1 |
Cache: | 1 |
Cycled: | |
Comment: | example sequence |
CREATE SEQUENCE sq_example
START WITH 1
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1
CYCLE;
ALTER TABLE public.sq_example OWNER TO postgres;
See Also
List of sequences