当前位置:   article > 正文

ORACLE +mybatis insert all批量插入使用序列unique constraint_insert all into中序列的使用

insert all into中序列的使用

使用insert all into 向oracle数据表中一次性插入多条数据的时候,使用序列号生成主键

insert all
into test values(seq.nextval)
into test values(seq.nextval)
select 1 from dual;
  • 1
  • 2
  • 3
  • 4

插入的多条数据获取的序列的值是一样的。
建议采用触发器生成id。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/241392
推荐阅读
相关标签
  

闽ICP备14008679号