execute_sql
Run SQL queries directly on the Adb MySQL Cluster using this tool, designed for streamlined database interaction and data retrieval.
Instructions
Execute a SQL query in the Adb MySQL Cluster
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"
}