# 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.

<figure><img src="https://837703843-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FUX6zPRMFFK0yrTghj7cY%2Fuploads%2FvxHwn3sbPas5Mwgl6s5R%2FCleanShot%202025-05-08%20at%2017.58.10%402x-min.png?alt=media&#x26;token=c5187655-e42f-4782-b673-b8821ffad488" alt=""><figcaption></figcaption></figure>

The condition(s) you specify will be sent to the server and converted to a `DELETE` statement, for example:

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

{% hint style="info" %}
You can check the action's *Payload* tab to see the actual conditions sent to the server.
{% endhint %}
