difference between explain plan and execution plan
问题 Can anyone explain me what is the difference between execution plan and explain plan. When I execute set autotrace traceonly; select * from emp where empno=7369; Execution Plan ---------------------------------------------------------- 0 SELECT STATEMENT Optimizer Mode=ALL_ROWS (Cost=1 Card=1 Bytes=38) 1 0 TABLE ACCESS BY INDEX ROWID SCOTT.EMP (Cost=1 Card=1 Bytes=38) 2 1 INDEX UNIQUE SCAN SCOTT.PK_EMP (Cost=0 Card=1) Explain Plan explain plan for select * from emp where empno=7369; select *