赞
踩
使用insert all into 向oracle数据表中一次性插入多条数据的时候,使用序列号生成主键
insert all into test values(seq.nextval) into test values(seq.nextval) select 1 from dual;
插入的多条数据获取的序列的值是一样的。 建议采用触发器生成id。