5

I have a table which has got a column with AUTO INCREMENT. I have to retrieve the value of this column when inserting a new row (i need the value of the new row). I've read a lot about it and found different solutions, one is to use SELECT LAST_INSERT_ID(). I've heard many different things about this. Can I or can i not use this? I am worried that another connection may insert a new row before I am able to call SELECT LAST_INSERT_ID(), and therefore get the wrong ID.

To sum up, is it safe to use SELECT LAST_INSERT_ID()? If not, how can I retrieve the last inserted id in a safe way?

D Stanley
  • 139,271
  • 11
  • 154
  • 219
AlexanderNajafi
  • 1,551
  • 2
  • 22
  • 37
  • Last insert id should return the last id generated for the current connection. No need to worry about other connections. – Jonnix Jan 09 '13 at 15:36
  • Refer this:http://dev.mysql.com/doc/refman/5.0/en/information-functions.html#function_last-insert-id – Bhavik Shah Jan 09 '13 at 15:37
  • 2
    If you have automatic connection pooling, running another call might be done in a different connection. If you don't have that, you're safe. – Erik Ekman Jan 09 '13 at 15:37
  • what is automatic connection pooling? I am using PHP with mysqli. Found out that i could just call mysqli->last_id. – AlexanderNajafi Jan 09 '13 at 15:40

5 Answers5

13

I dont think that you need to worry about the case you are mentioning here.

From Mysql documentation:
The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions.

For detailed info, refer this

Although, i would love to read from others if they have different opinion.

Bhavik Shah
  • 2,242
  • 1
  • 15
  • 32
0

If it is critical for you to have last id of the table, you can lock the table for writes, then make SELECT MAX(id) FROM table_name and then unlock table.

Alex Amiryan
  • 1,326
  • 1
  • 15
  • 30
0

The ID generated is on a per-connection basis so you shouldn't have any problems! This post goes into more detail.

Community
  • 1
  • 1
SeanWM
  • 15,457
  • 7
  • 48
  • 82
0

Yes, according to official documentation, it is safe:

The ID that was generated is maintained in the server on a per-connection basis. This means that the value returned by the function to a given client is the first AUTO_INCREMENT value generated for most recent statement affecting an AUTO_INCREMENT column by that client. This value cannot be affected by other clients, even if they generate AUTO_INCREMENT values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions.

Taken From: MYSQL Documentation 12.13. Information Functions

enbits
  • 66
  • 6
0

If you're using PDO, use PDO::lastInsertId.

and if you are using mysql, use mysqli::$insert_id.

and yes it is safe to use AI This is the post which says this : http://dev.mysql.com/doc/refman/5.0/en/getting-unique-id.html

and instead of using select statement directly, try to use preparedStatement.

Also you can use the Lock

Priti Biyani
  • 374
  • 3
  • 10