get_table_comment
Retrieve comment details for a specified table in Apache Doris databases. Provide the table name and optionally the database name to access metadata insights efficiently.
Instructions
[Function Description]: Get the comment information for the specified table.
[Parameter Content]:
table_name (string) [Required] - Name of the table to query
db_name (string) [Optional] - Target database name, defaults to the current database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_name | No | ||
table_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"db_name": {
"default": null,
"title": "Db Name",
"type": "string"
},
"table_name": {
"title": "Table Name",
"type": "string"
}
},
"required": [
"table_name"
],
"title": "get_table_comment_toolArguments",
"type": "object"
}