explain_query
Analyze SQL query performance by generating execution plans to identify optimization opportunities and understand database behavior.
Instructions
Get the execution plan for a SQL query to analyze performance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | SQL query to explain |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "SQL query to explain",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}