Code has been added to clipboard!

SQL AUTO INCREMENT in Oracle

Example
CREATE SEQUENCE seq_persons
MINVALUE 1
START WITH 1
INCREMENT BY 1
CACHE 10;