execute_hg_dml_sql
Execute INSERT, UPDATE, and DELETE SQL queries to manage data within a Hologres database, enabling efficient data manipulation and modification.
Instructions
Execute (INSERT, UPDATE, DELETE) SQL to insert, update, and delete data in Hologres databse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The DML SQL query to execute in Hologres database |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The DML SQL query to execute in Hologres database",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}