list_tables
Retrieve detailed information on ClickHouse tables in a specified database, including schema, comment, row count, and column count. Filter results using 'like' and 'not like' patterns for precise table listing.
Instructions
List available ClickHouse tables in a database, including schema, comment, row count, and column count.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | ||
like | No | ||
not_like | No |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"title": "Database",
"type": "string"
},
"like": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Like"
},
"not_like": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Not Like"
}
},
"required": [
"database"
],
"title": "list_tablesArguments",
"type": "object"
}