多表关联sql查询优化

Posted vaio-430

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多表关联sql查询优化相关的知识,希望对你有一定的参考价值。

select a from A a,B b where a.t=b.t

select a from A a where a.t in (select b.t from B b)

select distinct a.org_code,a.org_name from t_ORGANZATION a,T_DM_CDBP_ORGANZATION b where a.org_code=b.org_code;

select distinct a.org_code,a.org_name from t_ORGANZATION a where a.org_code in(select b.org_code from T_DM_CDBP_ORGANZATION b);

select distinct a.org_code,a.org_name from t_ORGANZATION a where EXISTS (select 1 from T_DM_CDBP_ORGANZATION b where a.org_code=b.org_code);

 

select

(*)1.523s

(1)1.459s

(t.id)1.36s

UNION ALL









以上是关于多表关联sql查询优化的主要内容,如果未能解决你的问题,请参考以下文章

数据库多表查询优化思路之笛卡儿积

数据库多表查询优化思路之笛卡儿积

多表关联查询语法?

MySQL千万级多表关联SQL语句调优

oracle 多表关联查询速度太慢了 ,求优化。。

mysql多条件查询的优化