execute_custom_query
Execute custom SQL SELECT queries to analyze data relationships within the Spanish stock exchange database.
Instructions
Execute a custom SQL query on the database (SELECT only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | No | Optional parameters for the query | |
sql | Yes | SQL SELECT query to execute |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"default": [],
"description": "Optional parameters for the query",
"items": {
"type": "string"
},
"type": "array"
},
"sql": {
"description": "SQL SELECT query to execute",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}