execute_sql
Execute SQL queries on Tibero databases to retrieve data, modify records, or perform database operations through secure database connections.
Instructions
Execute an SQL query on the Tibero server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}