Oracle database table implements PRIMARY key auto-increment function

Source: Internet
Author: User

about Oracle in - sequence sequence+ trigger trigger: Implementing a data Table tabdata_live_cycle The self-increment of the primary key ID in the .

CREATE SEQUENCE Tabdata_live_cycle_seq
MINVALUE 0
MAXVALUE 9999999999999999999999999999
INCREMENT by 1
START with 1
CACHE 20
Noorder
Nocycle;

CREATE OR REPLACE TRIGGER Tabdata_live_cycle_seq_id_art
Before insert on Tabdata_live_cycle
For each row
Begin
Select Tabdata_live_cycle_seq.nextval into:new.id from dual;
End;
/

Oracle database table implements PRIMARY key auto-increment function

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.