get_table_info
Retrieve detailed table schema information including column definitions, data types, and constraints from Tibero databases for database analysis and query planning.
Instructions
Get detailed information about a table
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | The name of the table |
Input Schema (JSON Schema)
{
"properties": {
"table_name": {
"description": "The name of the table",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}