describe_table
Provides the schema details, including column names and data types, for a specified table in a Microsoft SQL Server database. Simplifies table structure analysis for queries and data manipulation.
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"
}