用where替代order by
order by 子句只在兩種嚴格的條件下使用索引. order by中所有的列必須包含在相同的索引中並保持在索引中的排列順序. order by中所有的列必須定義為非空. where子句使用的索引和order by子句中所使用的索引不能並列.
例如: 表dept包含以下列: dept_code pk not null dept_desc not null dept_type null
非唯一性的索引(dept_type)
低效: (索引不被使用) select dept_code from dept order by dept_type
explain plan:
sort order by
table access full
高效: (使用索引) select dept_code from dept where dept_type > 0
explain plan:
table access by rowid on emp
index range scan on dept_idx
order by 也能使用索引! 這的確是個容易被忽視的知識點. 我們來驗證一下:
sql> select * from emp order by empno;
0 select statement optimizer=choose
1 0 table access (by index rowid) of 'emp'
2 1 index (full scan) of 'empno' (unique)
SQL優化常用方法38
避免在索引列上使用is null和is not null 避免在索引中使用任何可以為空的列,oracle將無法使用該索引 對於單列索引,如果列包含空值,索引中將不存在此記錄.對於復合索引,如果每個列都為空,索引中同樣不存在此記錄.如果至少有乙個列不為空,則記錄存在於索引中 舉例 如果唯一性索引建立在...
SQL優化常用方法36
用union替換or 適用於索引列 通常情況下,用union替換where子句中的or將會起到較好的效果.對索引列使用or將造成全表掃瞄.注意,以上規則只針對多個索引列有效.如果有column沒有被索引,查詢效率可能會因為你沒有選擇or而降低.在下面的例子中,loc id 和region上都建有索引...
SQL優化常用方法18
用exists替代in 在許多基於基礎表的查詢中,為了滿足乙個條件,往往需要對另乙個表進行聯接.在這種情況下,使用exists 或not exists 通常將提高查詢的效率.低效 select from emp 基礎表 where empno 0 and deptno in select deptn...