describe_table
Retrieve the structure of a specific MySQL table to analyze its columns, data types, and schema details for efficient database management and query optimization.
Instructions
Get the structure of a specific table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
table | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"table": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}