Help Guide For Software Engineer
Wednesday, May 30, 2012
Create SEQUENCE in Oracle
In Oracle DB, there is no AUTO_INCREMENT field like MySQL. Oracle has SEQUENCE instead of this. Below command can be used to create SEQUENCE in Oracle.
CREATE SEQUENCE id_your_seq MINVALUE 1 START WITH 1 INCREMENT BY 1 NOCACHE;
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)