24

我想将图像与名字、姓氏相关联...如何检索最后一行并使用它插入另一个表?我尝试$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();
4

3 回答 3

30

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。

参考

于 2013-12-20T04:48:53.540 回答
16

首先,您需要在您的 ID 中创建 auto_increment 字段

然后你可以使用 $last_id = mysqli_insert_id($conn);

于 2017-02-01T09:59:48.393 回答
1

在我从 table2 获得最后一行后,我想将它插入 table1。这就是我所需要的

继续:

  1. 使用简单的常规插入查询插入表 1
  2. 获取最后一个插入 id
  3. 使用简单的常规插入查询插入表 2

就如此容易

于 2013-11-02T03:05:48.093 回答