<?PHP
$q = $sql->prepare("INSERT INTO `table` (row) VALUES ('1')");
$q->execute();
$lastid = $sql->lastInsertId(); // is this a 2nd query?
?>
它会作为两个单独的SQL查询运行吗?
如果是这样,有没有办法在一个?
解决方法:
$lastid = $sql->lastInsertId();
它的工作方式类似于查询,因为它将从数据库中选择最后插入的id.
正如documentation所说
Returns the ID of the last inserted row, or the last value from a sequence object, depending on the underlying driver.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。