db_select
Select rows from a database table with optional filters, sorting, and pagination to retrieve specific data.
Instructions
Select data from a table with optional filters and sorting
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of rows to return | |
| order | No | Column to order by | |
| table | Yes | Table name to query | |
| offset | No | Number of rows to skip | |
| columns | No | Columns to select (comma-separated, default: *) | * |
| filters | No | Filters to apply (key-value pairs) | |
| ascending | No | Sort order (default: true) |