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;

暂时就这几个最主要。

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值