How can I Insert many rows into a MySQL table and return the new IDs?(如何在 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()-1
从 LAST_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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 MySQL 表中插入多行并返回新 ID?


基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01