PHP擷取MySql新增記錄ID值的方法

來源:互聯網
上載者:User

標籤:語句   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值的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.