1. 优化器和成本
Explain Plan
Explain Plan
查看语句的执行计划。
语法:
语法:
Explain plan for Statement;
Explain plan for Statement;
Eg:
Eg:
EXPLAIN PLAN FOR
EXPLAIN PLAN FOR
select * from zk.cm_user a,zk.cm_account b where
select * from zk.cm_user a,zk.cm_account b where
a.acct_id=b.acct_id and a.phone_id like '159%';
a.acct_id=b.acct_id and a.phone_id like '159%';
select * from table(dbms_xplan.display);
select * from table(dbms_xplan.display);
(*)
(*)
在
在
PL/SQL Developer
PL/SQL Developer
中,选择
中,选择
File
File
New
New
Explain Plan Window
Explain Plan Window
,也可在
,也可在
sql windows
sql windows
中待
中待
语句输入完毕后直接按
语句输入完毕后直接按
F5
F5
键进入。
键进入。
评论0
最新资源