MySQL将两个查询组合成单个查询

问题描述 投票:0回答:1

我的第一个查询如下所示

SELECT a.name, b.desc, T3.desc1 as Output
FROM table1 a INNER JOIN
     table2 b
     ON a.id = b.id
INNER JOIN (
  SELECT b2.id, b2.status,  MAX(b2.created_time) as max_time
  FROM oac.qualys_scan b2
  GROUP BY b2.id  ,  b2.qualys_type
  ) t on t.id = a.id
      AND  t.status=b.status
      AND t.max_time = b.created_time
INNER JOIN table3 T3 on b.tid = T3.tid
WHERE b.status = 'FAIL'

我的第二个查询如下所示

SELECT a.name, b.desc, T4.desc2 as Output
FROM table1 a INNER JOIN
     table2 b
     ON a.id = b.id
INNER JOIN (
  SELECT b2.id, b2.status,  MAX(b2.created_time) as max_time
  FROM oac.qualys_scan b2
  GROUP BY b2.id  ,  b2.qualys_type
  ) t on t.id = a.id
      AND  t.status=b.status
      AND t.max_time = b.created_time
INNER JOIN table4 T4 on b.tid = T4.tid
WHERE b.status = 'FAIL'

在我的最终结果中,我想要Output column,它将具有来自T3.desc1T4.desc2的值如何将两个查询组合成单个查询?

mysql sql join union
1个回答
2
投票

如果table2.id存在于其中一个表格中 - table3table4LEFT JOIN将在IFNULL()的帮助下简化查询。

SELECT  a.name, 
        b.desc, 
        IFNULL(T3.desc1, T4.desc2) as Output
FROM    table1 a 
        INNER JOIN table2 b ON a.id = b.id
        INNER JOIN 
        (
            SELECT b2.id, b2.status,  MAX(b2.created_time) as max_time
            FROM oac.qualys_scan b2
            GROUP BY b2.id  ,  b2.qualys_type
        ) t on t.id = a.id
              AND  t.status=b.status
              AND t.max_time = b.created_time
        LEFT JOIN table3 T3 on b.tid = T3.tid
        LEFT JOIN table4 T4 on b.tid = T4.tid
WHERE   b.status = 'FAIL'
© www.soinside.com 2019 - 2024. All rights reserved.