摘要: 1、in和exists in是把外表和内表作hash连接,而exists是对外表作loop循环,每次loop循环再对内表进行查询,一直以来认为exists比in效率高的说法是不准确的。如果查询的两个表大小相当,那么用in和exists差别不大;如果两个表中一个较小一个较大,则子查询表大的用exist 阅读全文
posted @ 2017-12-29 10:35 兜小帅 阅读(219) 评论(0) 推荐(0)
摘要: sql中exists,not exists的用法 exists : 强调的是是否返回结果集,不要求知道返回什么, 比如: select name from student where sex = 'm' and mark exists(select 1 from grade where ...) , 阅读全文
posted @ 2017-12-29 10:22 兜小帅 阅读(18944) 评论(0) 推荐(0)