Set auto-increment of primary keys in OraclePL/SQL

Source: Internet
Author: User
Oracle does not set the primary key autoincrement function. You need to whitelist the sequences and triggers to automatically increase the primary key.

Oracle does not have the primary key auto increment function. You need to whitelist the sequences and triggers to automatically increase the primary key.

Oracle does not have the primary key auto increment function. You need to whitelist the sequences and triggers to automatically increase the primary key.

Example:

Create a Table menu:

Create table menu (menuId number (10) not null primary key,
Name varchar2 (40) not null,
Id_parent number (10) not null,
Url varchar2 (300) null );

Create the sequence menu_autoinc_seq:

Create sequence menu_autoinc_seq
Minvalue 1
Max value 99999999
Start with 1
Increment by 1
Nocycle
Nocache
Order;

Create trigger menu_autoinc_tg:

Create or replace trigger menu_autoinc_tg
Before insert on menu for each row
Begin
Select menu_autoinc_seq.nextval into: new. menuId from dual;
End menu_autoinc_tg;

The end statement can be written as end;

When creating a database object in Command window, if multiple rows of statements are used, you can start another line after the end of the statement/

Test:

Insert into menu values ('', 'personal transactions ', 0, 'indi. php ');
Insert into menu values ('', 'public transactions ', 0, 'public. php ');

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.