describe_table
Retrieve and display the schema of a specified table in MariaDB/MySQL databases, enabling users to understand its structure and attributes quickly. Supports optional database selection for precise queries.
Instructions
Show the schema for a specific table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (optional, uses default if not specified) | |
table | Yes | Table name |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (optional, uses default if not specified)",
"type": "string"
},
"table": {
"description": "Table name",
"type": "string"
}
},
"required": [
"table"
],
"type": "object"
}