Implementation of Oracle Auto-growth sequence

Source: Internet
Author: User


Oracle Auto-growth sequence Implementation about auto-growth sequence, I went back yesterday and tried to implement the Code item table
-- Create table Code_Main (CodeID number primary key, CodeName VARCHAR2 (50); -- create sequence www.2cto.com create sequence Code_Main_seq MINVALUE 1 MAXVALUE 9999999999 start with 1 increment by 1 CACHE 30 ORDER; -- create trigger create or replace trigger Code_Main_tg before insert on Code_Main for each row www.2cto.com begin select Code_Main_seq.NEXTVAL INTO: NEW. codeID from dual; END; insert into Code_Main (CodeName) VALUES ('zhang san'); author Christmas Eve

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.