示例:我使用PHP内置的PDO:
将一行插入数据库$sql = "INSERT INTO mytable (name, ok) VALUES ('john', '1')";
$this->dbh->exec($sql);
我需要该行的ID。我怎么能得到它?
答案 0 :(得分:3)
如果id
是auto_increment
,您可以使用PDO::lastInsertId
:
返回上次插入的ID 行,或序列中的最后一个值 对象,取决于底层 驱动程序。
所以,在你的情况下,这样的事情应该可以解决问题:
$lastId = $this->dbh->lastInsertId();