重庆思庄Oracle、Redhat认证学习论坛
标题:
基于ORACLE的SQL优化--执行计划(4、oracle里常见的执行计划)
[打印本页]
作者:
miss_puff
时间:
2018-3-2 14:57
标题:
基于ORACLE的SQL优化--执行计划(4、oracle里常见的执行计划)
一、与表访问相关的执行计划table access full :全表扫描
table access by user/index rowid:通过rowID扫描
二、与B树索引相关的执行计划
index unique scan:索引唯一扫描
index range scan:索引范围扫描
index full scan:索引全扫描
index fast full sacn:索引快速全扫描
index skip scan:索引跳跃式扫描
三、与表连接相关的执行计划
sort join、merge join:排序合并连接
nested loops:嵌套循环连接
hash join:哈希连接
anti:反连接(依据所采用的不同的反连接方法,所对应的关键字可能是hash join anti、merge join anti、nested loops anti)
semi:半连接(依据所采用的不同的办理按揭方法,所对应的关键字可能是hash join semi、merge join semi、nested loops semi)
作者:
miss_puff
时间:
2018-3-2 17:01
四、union/union all
union和union all表示对两个结果集进行合并。
union和union all的区别是:union all仅仅是简单地将两个结果集合并,并不做任何额外的出理;而union除了将两个结果集简单合并之外,还会对合并后的结果集做排序和去重,即union相当于先做union all,然后再对union all之后的结果集做sort unique。
欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/)
Powered by Discuz! X3.2