create sequence sql

Solutions on MaxInterview for create sequence sql by the best coders in the world

showing results for - "create sequence sql"
Anthony
14 Nov 2017
1CREATE SEQUENCE schema.seq_name 
2	MINVALUE 1 
3    INCREMENT BY 1 
4    START WITH 1 
5    CACHE 1000 
6    ORDER;
7GRANT SELECT ON schema.seq_name TO user_name;