分类目录

链接

2018 年 2 月
 1234
567891011
12131415161718
19202122232425
262728  

近期文章

热门标签

新人福利,免费薅羊毛

oracle自增列

--创建序列 create sequence SEQ_T_CG_PLAN_ITEM_ID   start with 1   increment by 1   nomaxvalue   nominvalue   nocycle   nocache;       二、触发器 declare     integrity_error  exception;     errno            integer;     errmsg           char(200);     dummy            integer;     found            boolean;   begin        select SEQ_T_CG_PLAN_ITEM_ID.nextval into:New.id from dual;   exception     when integrity_error then        raise_application_error(errno, errmsg); end;...

Oracle 暂无评论 阅读(432)