php – mysql_insert_id可以安全使用吗?

前端之家收集整理的这篇文章主要介绍了php – mysql_insert_id可以安全使用吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

根据PHP文档,MysqL_insert_id从MysqL表中获取最后一个插入的id.

我的问题是,如果我有一个每秒向数据库插入超过2行的网站,我可以使用MysqL_insert_id并获取我之前在INSERT查询中引用的正确ID吗?

最佳答案
MysqL手册:

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.

简短版:使用安全.

原文链接:https://www.f2er.com/mysql/434074.html

猜你在找的MySQL相关文章