preview_table_data
Retrieve a sample of rows from a specified table to preview data, with an optional row limit, for efficient schema exploration and query validation.
Instructions
Fetch esa limited sample of rows (default 5) from a specified table...
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional. Maximum number of rows... | |
tableName | Yes | The exact name of the table... |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 5,
"description": "Optional. Maximum number of rows...",
"exclusiveMinimum": 0,
"type": "integer"
},
"tableName": {
"description": "The exact name of the table...",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}