set_column_description
Update or set a column's description in a database table, providing clear documentation for column meaning and usage.
Instructions
Set or update the description (comment) for a column.
Args: table_name: Name of the table containing the column. column_name: Name of the column to update. description: New description for the column.
Returns: JSON with status, table_name, column_name, description.
Example: set_column_description("Subject", "Age", "Subject age in years at enrollment")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | ||
| column_name | Yes | ||
| description | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |