LOADING STUFF...

PHP:MySQL函数mysql_insert_id()的用法

技术教程12小时前更新 北陌
15 0 0

PHP:MySQL函数mysql_insert_id()的用法

mysql_insert_id

(PHP 4, PHP 5)

mysql_insert_id —
取得上一步 INSERT 操作产生的 ID

说明

int mysql_insert_id
([ resource $link_identifier
] )

mysql_insert_id()
返回给定的
link_identifier
中上一步 INSERT 查询中产生的 AUTO_INCREMENT 的 ID 号。如果没有指定
link_identifier,则使用上一个打开的连接。

如果上一查询没有产生
AUTO_INCREMENT 的值,则
mysql_insert_id()
返回 0。如果需要保存该值以后使用,要确保在产生了值的查询之后立即调用
mysql_insert_id()

Note:

MySQL 中的 SQL 函数
LAST_INSERT_ID()
总是保存着最新产生的
AUTO_INCREMENT 值,并且不会在查询语句之间被重置。

Warning

mysql_insert_id()
MySQL 内部的 C API 函数
mysql_insert_id()
的返回值转换成
long(PHP 中命名为 int)。如果
AUTO_INCREMENT 的列的类型是 BIGINT,则
mysql_insert_id()
返回的值将不正确。可以在 SQL 查询中用
MySQL 内部的 SQL 函数
LAST_INSERT_ID() 来替代。

Example #1 mysql_insert_id() 例子

© 版权声明

相关文章

暂无评论

暂无评论...