标签:
drop sequence SEQ_sys_dictionary; create sequence SEQ_sys_dictionary INCREMENT BY 1 START WITH 1; create or replace trigger sys_dictionary_TRIGGER before insert on sys_dictionary for each row begin select SEQ_sys_dictionary.nextval into :new.id from dual; end ; commit;
标签:
原文地址:http://www.cnblogs.com/xsmhero/p/5026161.html