Thread safety of MySql's Select Last_Insert_ID

后端 未结 1 1292
温柔的废话
温柔的废话 2020-11-30 04:13

I\'m trying to make some MSSQL code also run on MYSQL and I just hit this land mine. Google says the normal approach is to simply do your insert and then select last_insert

1条回答
  •  -上瘾入骨i
    2020-11-30 04:42

    https://dev.mysql.com/doc/refman/5.5/en/information-functions.html#function_last-insert-id:

    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.

    So unless your inserts for multiple users would happen to be made over the same database connection, you have nothing to worry about.

    0 讨论(0)
提交回复
热议问题