首页 > 代码库 > sql中in/not in 和exists/not exists的用法区别
sql中in/not in 和exists/not exists的用法区别
1;首先来说in/not in的用法
in/not in是确定单个属性的值是否和给定的值或子查询的值相匹配;
select * from Student s where s.id in(1,2,3);<pre name="code" class="sql"> select * from Student s where s.name in( select distinct name from Project)2;现在来说exists/not exists的用法 exists/not exists是解决两张表的交集和差集
select * from proj_basic_info p where not exists (select * from proj_basic_info q where p.id=q.id and q.proj_type=1 and q.qy_source='SUAEE') <pre name="code" class="sql"> select * from proj_basic_info p where exists (select * from proj_basic_info q where p.id=q.id and q.proj_type=1 and q.qy_source='SUAEE')
总结:如果是判断单个属性是是否匹配时,就选in/not in;如果是判断多个属性时,即可以看做集合时,就选用exitst /not exists;
sql中in/not in 和exists/not exists的用法区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。