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视图用rownum报错:missing right parenthesis
- · 数据库 面试记录(面试题)
- · missing PARTITION or SUBPARTITION keyword
- · Linq2db.Oracle使用详解
- · oracle修改字段类型
- · [已解决]Oracle数据库长时间空闲后自动断开的解决办法
- · plsql 安装后database下拉没有东西
- · oracle64位客户端安装版 Instant Client v11.2.0.3.0(64-bit)
- · 腾讯《前端特工》闯关记
- · oracle忘记用户名密码