sql 中的in 和exists区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 中的in 和exists区别相关的知识,希望对你有一定的参考价值。
sql 中的in 和exists区别,我的理解exists只是返回TRUE或者FALSE。
假如一条语句为:select * from test where exists (select * from test where id=100);
假如select * from test where id=100这条语句查到数据的话就执行前面的select * from test,没有检查到数据则检查到数据,这个理解对吗?
但是今天看到这样的语句:
select sno,sname,sdept from student where dept in(select sdept from student where sname='小刘');
select sno,sname,sdept from student s1 where exists (select * from student s2 where s2.dept=s1.depe and s2.name='小刘')
上面两句执行的效果一样,都是查询和小刘在同一系的学生信息
下面的看不懂,exists后面的语句怎么还可以连接呢,他只是查询一张表叫S2啊,如果子查询执行成功话岂不是执行select sno,sname,sdept from student 吗?
请帮忙解答一下,谢谢!
其实说简单点就是exists用到了关联,而in是在一个大的数据及合理筛选,这么说性能的优劣你就很明白了吧。关联的速度是要大于筛选的,所以你只要能用exists就别用in,这是写出好的sql语句的基本规则。
exists是查询是否存在,它后边跟的语句是查询*还是直接写个1,效果都一样,比如你看到的sql的例子,我把*改成1,结果都一样的。
select sno,sname,sdept
from student s1
where exists
(select 1 --*
from student s2
where s2.dept=s1.depe
and s2.name='小刘');
比如说这个例子学生表被赋予了两个别名s1和s2
语句中要求dept和depe相等,我把上边的语句改一下你可能就明白他的意思了:
select sno,sname,sdept
from student s1 ,student s2
where s1.dept =s2.depe
and s1.name = '小刘';
语句就是为了要看出student表中某两行或者多行之间的关系,所以要对自己关联,你仔细看一下你所面对的student表的每一列,就可能看明白了。
记住sql不要从技术上去理解,你就直接把它的功能用汉字表达出来,然后去理解就行了,跟我们说话时一个样的:
从表student中找到dept和(student表中)depe相同的名字叫小刘的学生 参考技术A 假设如下应用:
两张表——用户表TDefUser(userid,address,phone)和消费表 TAccConsume(userid,time,amount),需要查消费超过5000的用户记录。
用exists:
select * from TDefUser
where exists (select 1 from TAccConsume where TDefUser.userid=TAccConsume.userid and TAccConsume.amount>5000)
用in:
select * from TDefUser
where userid in (select userid from TAccConsume where TAccConsume.amount>5000)
通常情况下采用exists要比in效率高。
exists()后面的子查询被称做相关子查询 他是不返回列表的值的.只是返回一个ture或false的结果(这也是为什么子查询里是"select 1"的原因,换成"select 6"完全一样,当然也可以select字段,但是明显效率低些)
其运行方式是先运行主查询一次 再去子查询里查询与其对应的结果 如果是ture则输出,反之则不输出.再根据主查询中的每一行去子查询里去查询.
in()后面的子查询 是返回结果集的,换句话说执行次序和exists()不一样.子查询先产生结果集,然后主查询再去结果集里去找符合要求的字段列表去.符合要求的输出,反之则不输出.本回答被提问者采纳 参考技术B in是指找到条件符合括号中的所有值的数据,里面的值是或者的关系
例如:where id in(1,2,3) 就等同于 where id=1 or id=2 or id=3
exists 是存在的意思,你上面的理解是对的,如果条件成立,便执行SQL语句,否则,不执行
可以连接的,上面的语句相当于多了个条件 dept=字查询中等到的dept值 参考技术C IN适合于外表大而内表小的情况;EXISTS适合于外表小而内表大的情况。
SQL中的IN与NOT INEXISTS与NOT EXISTS 的区别及性能分析
in 和 exists
in 是把外表和内表作 hash 连接,而 exists 是对外表作 loop 循环,每次 loop 循环再对内表进行查询,一直以来认为 exists 比 in 效率高的说法是不准确的。
如果查询的两个表大小相当,那么用 in 和 exists 差别不大;
如果两个表中一个较小一个较大,则子查询表大的用 exists,子查询表小的用 in;
例如:表 A (小表),表 B (大表)
效率低,用到了A表上cc列的索引;
select * from A where cc in(select cc from B)
效率高,用到了B表上cc列的索引。
select * from A where exists(select cc from B where cc=A.cc)
相反的:
效率高,用到了B表上cc列的索引
select * from B where cc in(select cc from A)
效率低,用到了A表上cc列的索引。
select * from B where exists(select cc from A where cc=B.cc)
not in 和 not exists
not in 逻辑上不完全等同于 not exists,如果你误用了 not in,小心你的程序存在致命的 BUG,请看下面的例子:
create table t1(c1 int,c2 int);
create table t2(c1 int,c2 int);
insert into t1 values(1,2);
insert into t1 values(1,3);
insert into t2 values(1,2);
insert into t2 values(1,null);
执行结果:无
select * from t1 where c2 not in(select c2 from t2);
执行结果:1 3
select * from t1 where not exists(select 1 from t2 where t2.c2=t1.c2)
正如所看到的,not in 出现了不期望的结果集,存在逻辑错误。如果看一下上述两个 select 语句的执行计划,也会不同,后者使用了 hash_aj,所以,请尽量不要使用 not in (它会调用子查询),而尽量使用 not exists(它会调用关联子查询)。
如果子查询中返回的任意一条记录含有空值,则查询将不返回任何记录。如果子查询字段有非空限制,这时可以使用 not in,并且可以通过提示让它用 hasg_aj 或 merge_aj 连接。
如果查询语句使用了 not in,那么对内外表都进行全表扫描,没有用到索引;而 not exists 的子查询依然能用到表上的索引。所以无论哪个表大,用 not exists 都比 not in 要快。
in 与 = 的区别
select name from student where name in('zhang','wang','zhao');
与
select name from student where name='zhang' or name='wang' or name='zhao'
结果是相同的。
以上是关于sql 中的in 和exists区别的主要内容,如果未能解决你的问题,请参考以下文章
sql中的in与not in,exists与not exists的区别
sql中的in与not in,exists与not exists的区别
浅谈sql中的in与not in,exists与not exists的区别
SQL 中的in与not inexists与not exists的区别以及性能分析