exists & in
Posted macoffee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了exists & in相关的知识,希望对你有一定的参考价值。
从效率来看:
- 1): select * from T1 where exists(select 1 from T2 where T1.a=T2.a)
- T1数据量小而T2数据量非常大时,T1 << T2时,1):的查询效率高
- 2): select * from T1 where T1.a in (select T2.a from T2)
- T1数据量非常大而T2数据量小时,T1 >> T2时,2):的查询效率高
简而言之,外表大,用in; 内表大,用exists。
以上是关于exists & in的主要内容,如果未能解决你的问题,请参考以下文章
SQL中的in与not inexists与not exists的区别以及性能分析
SQL中的IN与NOT INEXISTS与NOT EXISTS 的区别及性能分析
INEXISTS的相关子查询用INNER JOIN 代替--性能优化