Oracle | PL/SQL sets auto increment of primary keys

Source: Internet
Author: User

Oracle | PL/SQL sets auto-increment of primary keys. Oracle does not set auto-increment of primary keys. You need to set the sequence and trigger to auto-increment of primary keys. Example: create a table menu: [SQL] 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 sequence menu_autoinc_seq: [SQL] create sequence menu_autoinc_seq minvalue 1 maxvalue 99999999 start with 1 increment by 1 nocycle nocache order; create trigger menu_autoinc_tg: [SQL] 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; if multiple rows of statements are used when creating database objects in Command window, enter/test another line after the end: [SQL] 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.