Описание тега explain
Explain is a SQL command that shows the execution plan of a query.
Explain is an useful command used in various Database servers(like Oracle, MySQL, PostgreSQL, etc). It shows the execution plan of a query.
Oracle:
EXPLAIN PLAN FOR SELECT …
PostgreSQL, MySQL:
EXPLAIN SELECT …
MSSQL doesn't support explain, but uses
"SET SHOWPLAN_TEXT ON".
instead.