Properties

Name: sq_example 
OID: 16443 
Owner: postgres 
Current value:
Minimum:
Maximum: 9223372036854775807 
Increment:
Cache:
Cycled:  
Comment: example sequence 

SQL


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