describe_table
Retrieve the schema structure of any MSSQL database table, including column names and data types, to understand table composition for query planning and data analysis.
Instructions
Describes the schema (columns and types) of a specified MSSQL Database table.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tableName | Yes | Name of the table to describe |
Input Schema (JSON Schema)
{
"properties": {
"tableName": {
"description": "Name of the table to describe",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}