在 PHP 中使用 PDO 时如何检索最后插入的行的 id?

发布于 2024-08-16 12:44:16 字数 181 浏览 1 评论 0原文

示例:我使用 PHP 内置的 PDO 将一行插入数据库:

$sql = "INSERT INTO mytable (name, ok) VALUES ('john', '1')";
$this->dbh->exec($sql);

我需要该行的 id。我怎么能得到那个?

Example: I insert a row into the DB with this, using PHP's built in PDO:

$sql = "INSERT INTO mytable (name, ok) VALUES ('john', '1')";
$this->dbh->exec($sql);

I need the id of that row. How could I get that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-08-23 12:44:16

如果 idauto_increment,则可以使用 PDO::lastInsertId :

返回最后插入的ID
行,或序列中的最后一个值
对象,取决于底层
司机。

因此,就您而言,类似这样的事情应该可以解决问题:

$lastId = $this->dbh->lastInsertId();

If the id is an auto_increment, you can use PDO::lastInsertId :

Returns the ID of the last inserted
row, or the last value from a sequence
object, depending on the underlying
driver.

So, in your case, something like this should do the trick :

$lastId = $this->dbh->lastInsertId();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文