- 自下向上的顺序解析
where条件执行是从最后一 个条件开始的
select * from A a where a.id < 9 and a.id > 10
先执行a.id>10
select * from A a, B b where b.id =a.id
先获取B表
Count(1) 有索引用这个
count(id) null不会被计数
3.
OR性能大于IN
用UNOIN ALL(没去重) 代替 union(有去重)
in用between或or代替,最好用union all
union all代替in、or
MINUS 取代 NOT IN
4.
不创索引:
有排序,读小于40%
无排序,读<7%
5.
PCTFREE:为一块保留百分比,小于这个百分比,不能Insert,只能update(oracle以块读取,我这里是8K一块)
PCTUSED:当块内数据小于多少百分比,允许Insert