Create a primary key auto-increment table in Oracle

Source: Internet
Author: User


Oracle creates a primary key auto-increment table 1, creates a table www.2cto.com create table Test_Increase (userid number (10) not null primary key,/* primary key, automatically adding */username varchar2 (20 )); 2. CREATE an automatic growth 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, set the maximum value: maxvalue 9999 NOCYCLE -- always accumulate, create trigger Test_Increase BEFOREinsert ON Test_Increase for each row/* checks whether each row is triggered */beginselect TestIncrease_Sequence.nextval into: New. userid from dual; end; // * exit sqlplus row edit */4, submit commit; 5. test insert into Test_Increase (Username) values ('test ');

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.