# 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="/files/xgdnHpUASJf8aTsujPzR" 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.uibakery.io/reference/working-with-actions/bulk-delete-rows-action.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
