最二小码农 2022-09-18 09:27 采纳率: 50%
浏览 13
已结题

mysql 如何三个表及以上进行全连接(替代full join 两个表的可以)

mysql 如何三个表及以上进行全连接(替代full join 两个表的可以)

  • 写回答

1条回答 默认 最新

  • Java大魔王 2022-09-18 10:18
    关注
    有三张表,table_a, table_b, table_c
    b中的a_id关联a的id,c中的b_id关联b的id
    1.可以用left join union all right join实现两个表的全连接
    2.再用子查询中,拼上第三个表
    
    -- a,b,c三个表全连接
    select * from(
    -- a,b两表全连接
    SELECT a.id as a_id, b.id as b_id FROM table_a a left join table_b b on a.id = b.a_id
    union all
    SELECT a.id as a_id, b.id as b_id FROM table_a a right join table_b b on a.id = b.a_id
    )t1 left join (
        select * from table_c
    ) c on c.b_id = t1.b_id
    union
    select * from(
    -- a,b两表全连接
    SELECT a.id as a_id, b.id as b_id FROM table_a a left join table_b b on a.id = b.a_id
    union all
    SELECT a.id as a_id, b.id as b_id FROM table_a a right join table_b b on a.id = b.a_id
    )t2 right join (
        select * from table_c
    ) c on c.b_id = t2.b_id;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月26日
  • 已采纳回答 9月18日
  • 创建了问题 9月18日

悬赏问题

  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 AT89C51控制8位八段数码管显示时钟。
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题