Bulk Delete Rows
The Bulk Delete Rows step allows you to delete multiple rows in a table by a given condition.
You need to specify the column/columns to find the rows to delete and configure the condition(-s). In case of multiple conditions, the rows will be deleted if all conditions are met.

The condition(s) you specify will be sent to the server and converted to a DELETE
statement, for example:
DELETE FROM users WHERE id IN (23, 24, 25);
Last updated
Was this helpful?