Bulk Delete Rows

Last updated
Was this helpful?
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:
You can check the action's Payload tab to see the actual conditions sent to the server.
Last updated
Was this helpful?
Was this helpful?
DELETE FROM users WHERE id IN (23, 24, 25);