如何在 MySQL 表中插入多行并返回新 ID?

How can I Insert many rows into a MySQL table and return the new IDs?(如何在 MySQL 表中插入多行并返回新 ID?)
本文介绍了如何在 MySQL 表中插入多行并返回新 ID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通常我可以在 MySQL 表中插入一行并取回 last_insert_id.不过,现在我想向表中批量插入多行并取回一组 ID.有谁知道我该怎么做?

Normally I can insert a row into a MySQL table and get the last_insert_id back. Now, though, I want to bulk insert many rows into the table and get back an array of IDs. Does anyone know how I can do this?

有一些类似的问题,但它们并不完全相同.我不想将新 ID 插入任何临时表;我只想取回 ID 数组.

There are some similar questions, but they are not exactly the same. I don't want to insert the new ID to any temporary table; I just want to get back the array of IDs.

我可以从批量插入中检索 lastInsertId 吗?

Mysql 多行插入选择语句,带有 last_insert_id()

推荐答案

旧线程,但只是研究了这个,所以这里是:如果您在最新版本的 MySQL 上使用 InnoDB,您可以使用 <代码>LAST_INSERT_ID()ROW_COUNT().

Old thread but just looked into this, so here goes: if you are using InnoDB on a recent version of MySQL, you can get the list of IDs using LAST_INSERT_ID() and ROW_COUNT().

InnoDB 在进行批量插入时保证 AUTO INCREMENT 的序列号,前提是 innodb_autoinc_lock_mode 设置为 0(传统)或 1(连续).因此,您可以通过添加 ROW_COUNT()-1LAST_INSERT_ID()last 获取第一个 ID.

InnoDB guarantees sequential numbers for AUTO INCREMENT when doing bulk inserts, provided innodb_autoinc_lock_mode is set to 0 (traditional) or 1 (consecutive). Consequently you can get the first ID from LAST_INSERT_ID() and the last by adding ROW_COUNT()-1.

这篇关于如何在 MySQL 表中插入多行并返回新 ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)