zoukankan      html  css  js  c++  java
  • PL/SQL设置主键自增

    oracle没有设置主键auto increment的功能,需要自己编写序列和触发器实现主键自动递增。
    示例:
    创建表menu:
     

    一、创建表

    create table menumenuId number(10) not null primary key

                                       name varchar2(40) not null, 

                                     id_parent number(10) not null, 

                                    url varchar2(300) null);

    二、创建序列menu_autoinc_seq:
     create sequence menu_autoinc_seq 

                                          minvalue 1 

                                      maxvalue 99999999

                                       start with 1 

                                    increment by 1 

                                        nocycle                                    

                 nocache                                       

                order;

    三、创建触发器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;

  • 相关阅读:
    HTTP 状态码大全
    Redis Cluster数据分片机制
    redis 哨兵集群原理及部署
    python 连接 redis cluster 集群
    python连接redis哨兵集群
    Ubuntu设置终端操作行为的回收站
    实用Golang库
    实用的Python库
    Python 生成 JWT(json web token) 及 解析方式
    django 进行语言的国际化及在后台进行中英文切换
  • 原文地址:https://www.cnblogs.com/Lxiaojiang/p/6203249.html
Copyright © 2011-2022 走看看