drop_view
Remove an existing view in CockroachDB by specifying the view name. Simplifies database management by providing a direct method to delete views.
Instructions
Drop an existing view.
Args: view_name (str): Name of the view to drop.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
view_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"view_name": {
"title": "View Name",
"type": "string"
}
},
"required": [
"view_name"
],
"title": "drop_viewArguments",
"type": "object"
}