mysqli 最后插入 id
Posted
技术标签:
【中文标题】mysqli 最后插入 id【英文标题】:mysqli last insert id 【发布时间】:2013-11-13 08:00:51 【问题描述】:我想将图像与名字、姓氏相关联...如何检索最后一行并使用它插入另一个表?我尝试了$image = $mysqli->insert_id;
然后绑定,但它不起作用。有人可以帮帮我吗?
$image = $mysqli->insert_id;//this should come from table2
$stmt = $mysqli->prepare("
insert into table1 (username, firstname, lastname, image)
select ?,?,?,image from table2 t2 where username = ? and t2.id = ?
");
$stmt->bind_param('sssss', $username, $fname, $lname, $username, $image);
$stmt->execute();
【问题讨论】:
使用插入查询后需要使用insert_id;
,如:if ($stmt->execute()) $image = $stmt->insert_id;
@IlyaBursov 那么如何绑定t2.id = ?
你需要用更清晰、更鲜明的方式表达你的愿望
@user2926655 你想插入table1还是table2?
@NicoHaase 你几乎不会得到答案,因为 OP 7 年前离开了这个网站
【参考方案1】:
mysqli::$insert_id
-- mysqli_insert_id
-- 返回上次查询中使用的自动生成的 id,示例:
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* check connection */
if (mysqli_connect_errno())
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
$mysqli->query("CREATE TABLE myCity LIKE City");
$query = "INSERT INTO myCity VALUES (NULL, 'Stuttgart', 'DEU', 'Stuttgart', 617000)";
$mysqli->query($query);
printf ("New Record has id %d.\n", $mysqli->insert_id);
/* drop table */
$mysqli->query("DROP TABLE myCity");
/* close connection */
$mysqli->close();
输出
新记录的 id 为 1。
参考
php mysqli_insert_id: http://www.php.net/manual/en/mysqli.insert-id.php【讨论】:
复制自 PHP.Net...你能解释一下创建新表的必要性吗?【参考方案2】:首先你需要在你的 ID 中创建 auto_increment 字段
然后你可以使用
$last_id = mysqli_insert_id($conn);
【讨论】:
【参考方案3】:在我从 table2 获得最后一行后,我想将它插入 table1。这就是我所需要的
继续:
-
使用简单的常规插入查询插入表 1
获取最后一个插入ID
使用简单的常规插入查询插入表 2
就这么简单
【讨论】:
如果你没有颠倒你的表名,你的答案在概念上是正确的。以上是关于mysqli 最后插入 id的主要内容,如果未能解决你的问题,请参考以下文章
mysql insert一条记录后怎样返回创建记录的主键id,last
mysql insert一条记录后怎样返回创建记录的主键id,last