我想检索数据库中插入行的ID,但是我不知道该怎么做。
我尝试使用SQL子句返回RETURNING id,但不起作用。
RETURNING id
插入一行后如何返回ID?
在上调用execute()方法后PreparedStatement,插入行的ID将位于insert_id属性中。只看它。
execute()
PreparedStatement
insert_id
$pstm->execute(); $pstm->insert_id;