Create a table, sequence, and trigger in oracle

Source: Internet
Author: User

Create table "JCMS_ADVERT" ("ID" integer not null enable, "SITEID" INTEGER, "NAME" VARCHAR2 (150 CHAR) not null enable, "UPDATETIME" DATE, primary key ("ID"); create Table sequence create sequence seq_advert minvalue 1 maxvalue 9999999999999999999999999999 increment by 1 start with 1 cache 20 noorder nocycle; create trigger create or replace trigger tr_advert before insert on jcms_advert for each rowbegin select seq_advert.nextval into: new. id from dual; end; insert record insert into jcms_advert (siteid, name, updatetime) values (1, 'header ad', sysdate); query record select * from jcms_advert;

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.