describe-table
Retrieve and analyze the structure of specified tables in Microsoft SQL Server, including column details and schema information, to streamline database management and query optimization.
Instructions
查看指定資料表的欄位結構
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schemaName | No | 結構描述名稱 (預設: dbo) | dbo |
| tableName | Yes | 資料表名稱 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"schemaName": {
"default": "dbo",
"description": "結構描述名稱 (預設: dbo)",
"type": "string"
},
"tableName": {
"description": "資料表名稱",
"type": "string"
}
},
"required": [
"tableName"
],
"type": "object"
}