MySQL Variables last_insert_id 数据库 参数变量解释及正确配置使用

本站中文解释

last_insert_id是MySQL的一个全局系统变量,该变量用于表示最后一次插入操作产生的AUTO_INCREMENT ID号,或者通过SELECT LAST_INSERT_ID()函数获得指定表最新插入记录的AUTO_INCREMENT ID 号。

要设置last_insert_id,可以使用以下语句:

SET last_insert_id = 记录ID值;

要查询last_insert_id的值,可使用SELECT LAST_INSERT_ID()函数。

官方英文解释

last_insert_id

The value to be returned from
LAST_INSERT_ID(). This is
stored in the binary log when you use
LAST_INSERT_ID() in a statement
that updates a table. Setting this variable does not update
the value returned by the
mysql_insert_id() C API
function.


数据运维技术 » MySQL Variables last_insert_id 数据库 参数变量解释及正确配置使用