Oracle sql优化

最近在做数据库优化,真的是各种问题,各种奇葩,暂时记录几种遇到的优化方式,以后遇到可以备用一下: 

1. 查询中 多张表关联 用 join 而不用 table1,table2的方式  --速度相差数倍

例 : 原 select * from table1,table 2 where table1.test = table2.test 

修正:select * from table1 join table2 on table1.test = table2.test where 1=1 ...

2. 查询项中最好不要有单独查一张表中某个值的方式,改成 表关联 。

 例:原select a.*,(select id from table1 where table1.test = table2.test) xid from table2 ...

修正为 select a.*, table2.id xid from table 2 join table1 on table2.test =table1.test...

3. 查询中distinct 使用

例:原 select distinct id ,name,age,crsj,xgsj,cjrq,xgqr...from table 1 .....

修正为 select * from (select emp.* ,row_number() over (partition by id order by rownum) cn

select  id,name,age,crsj,xgsj,cjrq,xgqr...from table 1...) emp )  where cn=1;

暂时就这几个最主要。

 

你可能感兴趣的:(学习总结)