Oracle Database primary key auto-increment SQL

Source: Internet
Author: User

Oracle Database primary key auto-increment SQL

We all know that in MySQL, it is very easy to implement automatic increment of primary keys. you only need to add auto_increment after the primary key definition, but this is not the case in Oracle. It takes several steps to complete 1. create table account book (account INTEGER not null, user CHAR (20) not null, owner name CHAR (20) not null, address CHAR (200) not null, carrier CHAR (20) not null, DATE not null, constraint PK _ account primary key (account number); 2. CREATE a sequence SEQUENCE: CREATE sequence book_Sequence increment by 1 -- add a few start with 1 each time -- count NOMAXVALUE from 1 -- do not set the maximum value NOCYCLE; -- always accumulate, do not loop 3. CREATE a TRIGGER: create trigger book_increase BEFOREinsert ON account book for each ROWbeginselect BOOK_SEQUENCE.nextval into: New. user number from dual; end; this way, you can automatically increase the number when the primary key is null when the user table is inserted. it should be emphasized that it is very troublesome for some beginners to name them in Chinese .. but sequence must be in English ..

Related Article

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.