罗罗 2019-04-07
废话不多说了,直接给大家贴代码了,具体代码如下所示:
创建序列
create sequence seq_student start with 6 increment by 1 maxvalue 500 nominvalue nocycle nocache;
创建触发器
create or replace trigger trigger_student before insert on student for each row declare BEGIN select seq_student.nextval into :new.id from dual; END;
总结
本文实例讲述了jquery trigger实现联动的方法。分享给大家供大家参考,具体如下:。<input type="button" value="设置成湖北襄阳" onclick="test()&q