码迷,mamicode.com
首页 > 数据库 > 详细

mysql not in 和 not exits

时间:2017-08-01 23:06:17      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:from   style   log   not   版本   sts   select   子查询   class   

not exists 版本
SELECT
  org.*,
  u.rname AS uname
FROM
  exam_org org
  LEFT JOIN exam_user u
    ON org.ouid = u.uno WHERE NOT EXISTS
    (SELECT
      id
    FROM
      exam_org
    WHERE id IN (8,0)
      AND id = org.id)


not in 
SELECT
  org.*,
  u.rname AS uname
FROM
  exam_org org
  LEFT JOIN exam_user u
    ON org.ouid = u.uno WHERE id not in(8,0)
    
由此可见,对于没有子查询来说 ,not innot exists 应该是差不多的

 

mysql not in 和 not exits

标签:from   style   log   not   版本   sts   select   子查询   class   

原文地址:http://www.cnblogs.com/whm-blog/p/7271079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!