标签: oracle oracle11g triggers oracle10g toad
我想在Toad Modeler 5.3中创建Oracle触发器。这是表格:
在我的情况下,我需要使用触发器添加userID。
我被困在这里:
你能帮助我什么应该是触发器身体吗?
编辑:这样的事情?
create sequence t1_seq start with 1 increment by 1 nomaxvalue; BEGIN select t1_seq.nextval into :new.id_increment from dual; END