回答編集履歴
1
参考URL追記
test
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
-
lastInsertI
|
1
|
+
`lastInsertId()`はトランザクション内で最後にInsertされたIDを取得するものなので、
|
2
2
|
|
3
|
-
既にコミット済みのテーブルから取得する場合は、select max(ID) from table; にな
|
3
|
+
既にコミット済みのテーブルから取得する場合は、select max(ID) from table; になります。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
参考:[https://www.php.net/manual/ja/pdo.lastinsertid.php](https://www.php.net/manual/ja/pdo.lastinsertid.php)
|