繁体   English   中英

MySQL查找一个表中的记录,而该表没有另一表中的列的值

[英]MySQL Find records in one table that has no value of a column in another table

我有table1,其中包含列(简体):

+-------------------------+
| id | user_id | username |
+----+---------+----------+
|  1 |     123 | peter    |
|  2 |     234 | john     |
+-------------------------+

和表2,其中包含列(简体):

+----------------------------------+
| id | user_id | checklist_item_id |
+----+---------+-------------------+
|  1 |     123 |               110 |
|  2 |     123 |               111 |
|  3 |     123 |               112 |
|  4 |     234 |               110 |
|  5 |     234 |               112 |
+----------------------------------+

如上所示,表1中user_id的每个条目都有该user_id的多个条目以及多个checklist_item_ids。

我有兴趣返回仅第二张表中没有checklist_item_id = 111条目的记录。查询必须仅返回:

+---------+
| user_id |
+---------+
|     234 |
+---------+

作为具有user_id 123的用户,请在表2中具有一个checklist_item_id为111的条目。

您可以使用子查询,例如:

SELECT *
FROM table1
WHERE user_id NOT IN
    (SELECT user_id
     FROM table2
     WHERE checklist_item_id = 111)

使用相关子查询

select t1.* from  table1 t1 where t1.user_id not in
( select user_id from table2 t2
   where t2.user_id=t1.user_id
   and checklist_item_id=111
)

或使用not exist比不使用更有效的方法

select t1.* from table1 t1 where not exists
    ( select 1 from table2 t2  where t2.user_id=t1.user_id and 
    checklist_item_id=111
    )    

小提琴中的演示

id  userid  itemid
4   234     110
5   234     112

如果您只需要一个ID,那么它将是

select distinct t1.userid from  t1 where not exists
    ( select 1 from t1 t2  where t2.userid=t1.userid and 
    itemid=111
    )    

输出

userid
  234

演示版

最简单有效的方法是使用LEFT JOIN ,并过滤掉那些没有checklist_item_id = 111匹配记录的行。

SELECT DISTINCT t1.user_id 
FROM table1 AS t1 
LEFT JOIN table2 AS t2 ON t2.user_id = t1.user_id AND 
                          t2.checklist_item_id = 111 
WHERE t2.user_id IS NULL 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM