
上QQ阅读APP看书,第一时间看更新
How to do it...
- Identify the query for which you want to check the explain.
- It is recommended to check the explain of all the queries before executing, as query plans get changed if table demographics are changed.
- Hit F6 by selecting the query to get the explain, or write the EXPLAIN keyword before the query and press F5:
Explain
Insert Into test01.webclicks
select * From au.az_clicks;
- The explain plan will be generated in the result set window.