list_views
Retrieve and display all views within a specified schema in CockroachDB. Ideal for managing and querying database structures efficiently.
Instructions
List all views in a schema.
Args: db_schema (str): Schema name (default: "public").
Returns: All views in a schema
Input Schema
Name | Required | Description | Default |
---|---|---|---|
db_schema | No | public |
Input Schema (JSON Schema)
{
"properties": {
"db_schema": {
"default": "public",
"title": "Db Schema",
"type": "string"
}
},
"title": "list_viewsArguments",
"type": "object"
}