Oracle 12c版本不需要在使用触发器和insert的语句添加序列 create sequence myseq;create table mytable (id number default myseq.nextval,name varchar2(20));