Get Table Data
get-table-dataRetrieve data from Firebird database tables with optional filtering, pagination, and ordering. Specify table name and use WHERE, ORDER BY, FIRST, SKIP clauses.
Instructions
Retrieves data from a specific table with optional filtering, pagination, and ordering.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of rows to skip (SKIP clause in Firebird) | |
| first | No | Number of rows to retrieve (FIRST clause in Firebird) | |
| where | No | Optional WHERE clause (without the WHERE keyword) | |
| orderBy | No | Optional ORDER BY clause (without the ORDER BY keyword) | |
| tableName | Yes | Name of the table to retrieve data from |