Jump to content

LAST_INSERT_ID on multiple rows


asmith

Recommended Posts

Hi,

 

With a single query I'm inserting multiple rows into a table. mysql_insert_id() or LAST_INSERT_ID() in the mysql returns the FIRST row id.

 

I want to store the IDs of the inserted rows by the query in an array. I know how many rows it will be insert and I have the first inserted id, so I guess I can have all the IDs myself.

 

I just doubt it that in a busy server, Is it possible that 2 users running the script have a conflict in inserting the rows? So that one's rows insert in the middle of another's rows... (or MySQL locks it when inserting one's row?)

 

Is there any other way to get all the IDs of that single query?

Thanks

 

Link to comment
https://forums.phpfreaks.com/topic/170238-last_insert_id-on-multiple-rows/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.