donglu1971 2011-01-19 09:14
浏览 53
已采纳

mysql_insert_id()的行为

I am using functions from a php library that uses mysql_insert_id() every now and then. Now I've modified a few functions that insert data into tables such that the primary key value is explicitly specified e.g. I insert an a row with ID=300 followed by a row with ID=200 when the table originally had 10 rows. I am wondering if mysql_insert_id will behave as expected i.e. return the value I explicitly specified for the AUTO_INCREMENT PRIMARY KEY column.

  • 写回答

3条回答 默认 最新

  • downloadTemp2014 2011-01-19 09:29
    关注

    Table:

    CREATE TABLE `foo` (
      `id` int(11) NOT NULL auto_increment,
      `value` varchar(32) NOT NULL,
      PRIMARY KEY  (`id`)
    ) ;
    

    Code:

    print phpversion()."
    ";
    mysql_connect('localhost','user','pass');
    mysql_select_db('database');
    
    mysql_query('INSERT INTO `foo` (`id`,`value`) VALUES(100,"bar")');
    print var_export(mysql_insert_id())."
    ";
    
    mysql_query('INSERT INTO `foo` (`value`) VALUES("zoid")');
    print var_export(mysql_insert_id())."
    ";
    
    mysql_query('INSERT INTO `foo` (`id`,`value`) VALUES(99,"yargh")');
    print var_export(mysql_insert_id())."
    ";
    
    $q = mysql_query('SHOW TABLE STATUS LIKE "foo"');
    $status = mysql_fetch_assoc($q);
    mysql_free_result($q);
    print $status['Auto_increment']."
    ";
    
    mysql_query('INSERT INTO `foo` (`value`) VALUES("whatever")');
    print var_export(mysql_insert_id())."
    ";
    

    Output:

    5.2.XX-0.dotdeb.1
    100
    101
    99
    102
    102
    

    TL/DR version: it returns the last id, be it auto incremented, or explicitly given.

    UPDATE: Added INSERT with id < 100, as suggested by Mchl.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用