explain_query
Run EXPLAIN on a SQL query to inspect PostgreSQL planner cost estimates, join strategies, and index usage.
Instructions
Execute EXPLAIN on a SQL query to inspect query planner cost estimates, join strategies, and index usage.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | The SQL query to explain | |
| analyze | No | If true, runs EXPLAIN ANALYZE (actually executes the query to get actual timings). Default: false. |