describe_table
Retrieve schema information for SQL Server tables to understand column definitions, data types, and table structure for database analysis and query development.
Instructions
Get the schema information for a specific table
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | No | Database name (optional) | |
schema | No | Schema name (optional, defaults to dbo) | |
table_name | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (optional)",
"type": "string"
},
"schema": {
"description": "Schema name (optional, defaults to dbo)",
"type": "string"
},
"table_name": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"table_name"
],
"type": "object"
}