Get Table Data
get-table-dataFetch records from any Firebird database table using natural language, with optional WHERE filtering, FIRST/SKIP pagination, and ORDER BY sorting.
Instructions
Retrieves data from a specific table with optional filtering, pagination, and ordering.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tableName | Yes | Name of the table to retrieve data from | |
| first | No | Number of rows to retrieve (FIRST clause in Firebird) | |
| skip | No | Number of rows to skip (SKIP clause in Firebird) | |
| where | No | Optional WHERE clause (without the WHERE keyword) | |
| orderBy | No | Optional ORDER BY clause (without the ORDER BY keyword) |