Oracle sets primary key auto-Increment

Source: Internet
Author: User

Oracle sets primary key auto-increment. Oracle does not have an auto-increment field. It can be indirectly implemented through sequence + trigger. In cmd, you can log on to sqlplus and run it directly. The steps below generally take place: 1. Create the data table Codecreate table Test_Increase (userid number (10) primary key,/* primary key, and automatically add */username varchar2 (20 )); 2. CREATE auto-increment sequence create sequence TestIncrease_Sequence increment by 1 -- add several start with 1 each time -- count NOMAXVALUE from 1 -- do not set the maximum value NOCYCLE -- always accumulate, no loop CACHE 10; 3. create trigger Test_Increase BEFOREinsert ON Test_Increase for each ROWbeginselect TestIncrease_Sequence.nextval into: New. userid from dual; end;

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.