Home > Database > Mysql Tutorial > 辛星浅析MySQL中的last_insert_id()_MySQL

辛星浅析MySQL中的last_insert_id()_MySQL

WBOY
Release: 2016-06-01 11:52:23
Original
1103 people have browsed it

很多时候,我们在插入一条数据的时候,我们需要知道它的主键是多少,它会自动返回最后一个insert并且为auto_increment列位置的第一个发生的值。

而且需要注意的是产生的id每次连接后保存在服务器中,这意味着函数向一个给定客户端返回的值就是该客户端产生对影响auto_increment列的最新语句后的第一个auto_increment值。

而且这个值不会被其他客户端影响,即使它们产生了它们自己的auto_increment值,这个行为是保证了我们能够找回自己的id而不用担心其他客户端的活动,而且不需要加锁或者其他处理,也就是说,last_insert_id是针对connection的。

如果我们用单条的insert语句插入多个行,那么last_insert_id()只返回插入的第一行产生的值,其原因就是这样会让依靠其他服务器复制同样的insert语句会变得简单。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template