標籤:語句 lin 資料 int 方法 表結構 php nbsp insert
今天發現用mysql_insert_id()擷取到的新增記錄的id不正確,
雖然發現原始碼的事務寫的有問題,但是最根本的原因是,我插入資料的id類型是bigint型
擷取MySql新增記錄ID值的方法有
1.使用語句
mysql_query("select max(id) from user",$link);
2.使用函數msyql_insert_id();
(1)mysql版
int mysql_insert_id ([ resource $link_identifier = NULL ] )
返回在最後一次執行了 INSERT 查詢後,由 AUTO_INCREMENT 定義的欄位的值。
返回上一步 INSERT 操作產生的 ID。如果上一查詢沒有產生 AUTO_INCREMENT 的 ID,則 mysql_insert_id() 返回 0
但是當id 為bigint 型時 就不在起作用了
(2)mysqli版
mixed mysqli_insert_id ( mysqli $link )
可根據結果的大小返回一個int或者string
3.使用查詢
msyql_query("select last_insert_id()");
last_insert_id() 是mysql 函數
該方法解決了 mysql_insert_id () 中遇到的 bigint 型問題
last_insert_id() 返回的是 AUTO_INCREMENT 的 ID。
如果返回為0,查看錶結構中,沒有設定AUTO_INCREMENT ;或者是不是用了 insert delay 的功能(不會返回即時的返回id值)
4.PDO裡的函數
public string PDO::lastInsertId ([ string $name = NULL ] )
返回最後插入行的ID或序列值
PHP擷取MySql新增記錄ID值的方法