read_table_rows
Retrieve table rows with optional filters, sorting, and pagination to query data from Microsoft SQL Server.
Instructions
Reads rows from a table with optional filtering and pagination
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | Name of the table | |
| columns | No | Columns to select (optional, defaults to all) | |
| filters | No | Filter conditions (optional) | |
| limit | No | Maximum number of rows to return (optional) | |
| offset | No | Number of rows to skip (optional) | |
| order_by | No | Ordering specification (optional) |