标签: php mysql
我需要PHP中的last inserted record而不插入我需要id before insert任何数据的任何数据。
last inserted record
id before insert
答案 0 :(得分:5)
我希望这就是你要找的东西
SELECT id FROM table ORDER BY id DESC LIMIT 1
希望这可以帮助你
答案 1 :(得分:1)
只需使用
SELECT MAX(id) FROM your_table_name
或使用PDO
PDO::lastInsertId