Answers for "how to create sequence on table in oracle"

SQL
3

oracle create sequence

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

Code answers related to "how to create sequence on table in oracle"

Code answers related to "SQL"

Browse Popular Code Answers by Language