in 编程
in能够分为三类: oop
1、 优化
形如select * from t1 where f1 in ( 'a ', 'b '),应该和如下两种比较效率 spa
select * from t1 where f1= 'a ' or f1= 'b ' 索引
或者 select * from t1 where f1 = 'a ' union all select * from t1 f1= 'b ' hash
你可能指的不是这一类,这里不作讨论。 io
2、 效率
形如select * from t1 where f1 in (select f1 from t2 where t2.fx= 'x '), select
其中子查询的where里的条件不受外层查询的影响,这类查询通常状况下,自动优化会转成exist语句,也就是效率和exist同样。 循环
3、
形如select * from t1 where f1 in (select f1 from t2 where t2.fx=t1.fx),
其中子查询的where里的条件受外层查询的影响,这类查询的效率要看相关条件涉及的字段的索引状况和数据量多少,通常认为效率不如exists.
除了第一类in语句都是能够转化成exists 语句的,通常编程习惯应该是用exists而不用in.
A,B两个表,
(1)当只显示一个表的数据如A,关系条件只一个如ID时,使用IN更快:
select * from A where id in (select id from B)
(2)当只显示一个表的数据如A,关系条件不仅一个如ID,col1时,使用IN就不方便了,可使用EXISTS:
select * from A
where exists (select 1 from B where id = A.id and col1 = A.col1)
(3)当只显示两个表的数据时,使用IN,EXISTS都不合适,要使用链接:
select * from A left join B on id = A.id
因此使用何种方式,要根据要求来定。
exists
exists是用来判断是否存在的,当exists(查询)中的查询存在结果时则返回真,不然返回假。not exists则相反。
exists作为where 条件时,是先对where前的主查询询进行查询,而后用主查询的结果一个一个的代入exists的查询进行判断,若是为真则输出当前这一条主查询的结果,不然不输出。
in和exists区别
in 是把外表和内表做hash 链接,而exists是对外表做loop循环,每次loop循环再对内表进行查询。
一直以来认为exists比in效率高的说法是不许确的。
若是查询的两个表大小至关,那么用in和exists差异不大。
若是两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用in。
NOT EXISTS,exists的用法跟in不同,通常都须要和子表进行关联,并且关联时,须要用索引,这样就能够加快速度。
exists 至关于存在量词:表示集合存在,也就是集合不为空只做用一个集合。
例如 exist P 表示P不空时为真; not exist P表示p为空时为真。
in表示一个标量和一元关系的关系。
例如:s in P表示当s与P中的某个值相等时 为真; s not in P 表示s与P中的每个值都不相等时为真:
not in 和not exists的区别
若是查询语句使用了not in 那么内外表都进行全表扫描,没有用到索引;
而not extsts 的子查询依然能用到表上的索引。
因此不管那个表大,用not exists都比not in要快。