Answers for "how to create sequence in sql"

SQL
3

create sequence sql

CREATE SEQUENCE schema.seq_name 
	MINVALUE 1 
    INCREMENT BY 1 
    START WITH 1 
    CACHE 1000 
    ORDER;
GRANT SELECT ON schema.seq_name TO user_name;
Posted by: Guest on July-11-2021
0

sql sequence

CREATE SEQUENCE sequence-name
    START WITH initial-value
    INCREMENT BY increment-value
    MAXVALUE maximum-value
    CYCLE | NOCYCLE;
Posted by: Guest on June-09-2021

Code answers related to "how to create sequence in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language