mysql_explain_query
Shows the execution plan for SELECT queries to analyze performance and find missing indexes.
Instructions
Run EXPLAIN on a SELECT query to show the query execution plan. Use this to analyze query performance and identify missing indexes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | A read-only SELECT query to EXPLAIN. Use the same SQL you would run in mysql |