?? plan.sql
字號(hào):
rem plan.sql - displays contents of the explain plan table
set pages 9999;
select lpad(' ',2*(level-1))||operation operation,
options,
object_name,
position,
other_tag
from plan_table
start with id=0
and
statement_id = 'test3'
connect by prior id = parent_id
and
statement_id = 'test3';
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -