Properties

Name: sq_1 
OID: 16445 
Owner: postgres 
Current value:
Minimum:
Maximum: 9223372036854775807 
Increment:
Cache:
Cycled:  
Comment:  

SQL


CREATE SEQUENCE sq_1
    START WITH 1
    INCREMENT BY 1
    NO MAXVALUE
    NO MINVALUE
    CACHE 1;


ALTER TABLE public.sq_1 OWNER TO postgres;

See Also

List of sequences