繁体   English   中英

连接三个表A、B、C并返回mysql中A中的common

[英]Join three tables A, B, C and return common in A in mysql

我想加入下面三个表 A、B、C 并只返回表 A 的公共(阴影)部分

A
-------
ID, Name

B
-------
ID, ORG

C
--------
ID, DEP

在此处输入图像描述

请任何人提供简单的加入查询

我知道您想要来自a的行,其id可以在bc中找到。

这听起来像两个exists子查询:

select a.*
from a
where 
    exists (select 1 from b where b.id = a.id)
    or exists (select 1 from c where c.id = a.id)

如果您还想要表 b 或 c 中的列,则可以使用两个left joins ,其中的where条件可确保至少有一个连接成功:

select a.*, b.org, c.dept
from a
left join b on b.id = a.id
left join c on c.id = a.id
where b.id is not null or c.id is not null

您想要一个以A开头的left join ,然后进行一些过滤:

select . . .
from a left join
     b
     on . . .  left join
     c
     on . . .
where b.? is not null or c.? is not null;

? 要么是join中使用的列,要么是各个表上的主键。

暂无
暂无

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

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