この SQL を使用する場合:
UPDATE formulare SET EV_id=59, EV_status=5 WHERE EV_id=57 AND ID_uziv=12;SELECT LAST_INSERT_ID();
0
最後の挿入 ID として取得します。私はphpを使用しmysqli_insert_id
ていますが、ここに次のように書かれています:
The mysqli_insert_id() function returns the ID generated by a query
on a table with a column having the AUTO_INCREMENT attribute.
If the last query wasn't an INSERT or UPDATE statement
or if the modified table does not have a column with the AUTO_INCREMENT attribute,
this function will return zero.
私のテーブルformualre
にはauto increment
列があるので、どこに問題があるのか わかりません