DELETE FROM
Note
Example
Used to delete the data, if the table has already been changed within the same transaction.
$to_delete = (
SELECT * FROM my_table;
DELETE FROM my_table ON
SELECT * FROM $to_delete;
Note
Example
Used to delete the data, if the table has already been changed within the same transaction.
$to_delete = (
SELECT * FROM my_table;
DELETE FROM my_table ON
SELECT * FROM $to_delete;
本文档使用 全库网 构建