Bulk Delete Rows action

The Bulk Delete Rows action allows you to delete multiple rows in a table by a given condition.

Specify the column/ columns to find the rows to delete, then configure the condition(-s). In case of multiple conditions, the rows will be deleted if all conditions are met.

This condition will be sent to the server and converted to a DELETE statement like this:

DELETE FROM users WHERE id IN (23, 24, 25);

Note: you can check the Payload section to see the actual conditions sent to the server.

No rows will be deleted if the conditions aren't met.

Last updated