我有2個查詢返回2個結果集。 如何組合這兩個查詢來獲得單個結果?Mysql - 組合2個SQL查詢
首先查詢:
SELECT *
FROM Base base
INNER JOIN Child child ON child.base_id = base.id
where base.`status` = "active" and base.application = "template";
第二個查詢:
SELECT *
FROM Base base
WHERE base.`status` = "active" and base.application = "template" and base.role = "public" ;
請幫助。
你想要一個單一的結果,或一個單一的結果集? – piotrgajow
單個結果集 –