Describe Table Columns
mssql_describe_table_columnsRetrieve column definitions for SQL Server tables, including data type, length, nullability, default, and ordinal position.
Instructions
Returns column definitions for a table: name, data type, length, nullability, default, and ordinal position. Read-only. Uses parameterized queries to prevent injection.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tableName | Yes | Table name | |
| schemaName | No | Schema name (default: dbo) | dbo |
| response_format | No | Output format: 'json' for structured data, 'markdown' for human-readable table | json |