美文网首页
Oracle实现表自增(序列+索引)

Oracle实现表自增(序列+索引)

作者: Q轩哥 | 来源:发表于2019-07-15 13:54 被阅读0次

    创建索引
    create sequence xxx_Id_seq
    minvalue 1
    maxvalue 9999999999999
    start with 1
    increment by 1
    nocache;

    添加触发器
    create or replace trigger xxx_table_id_trig
    before insert on "xxx_table"
    for each row
    BEGIN SELECT xxx_Id_seq.NEXTVAL INTO :NEW."id" FROM DUAL;
    END;

    相关文章

      网友评论

          本文标题:Oracle实现表自增(序列+索引)

          本文链接:https://www.haomeiwen.com/subject/dzknkctx.html