oracle 多個查詢語句結果合并

來源:互聯網
上載者:User

在開發環境中遇到這樣關於資料庫的問題

有三個不同的查詢語句
1:
select year_mon,sum(gasmon)
from a
where id='HBsRf0t6UI'
and class=11
group by year_mon
2:
select year_mon,sum(wellgasmon)
from b
where id='HBsRf0t6UI'
and class=11
group by year_mon
3:
select year_mon,sum(gasprodmon)
from c
where id='HBsRf0t6UI'
and class=11
group by year_mon

本人希望能顯示出下面的效果:

year_mon  sum(gasmon)  sum(wellgasmon)    sum(gasprodmon)
200702     122                  222                       123
200703     333                  234                        342
200704     0                      2334                      0
200705     324                  2342                      234

這樣的效果也行。

在高人的指點下,問題總算解決了

SELECT   year_mon, SUM (gasmon), SUM (wellgasmon), SUM (gasprodmon)
    FROM (SELECT   year_mon, SUM (gasmon) gasmon, 0 wellgasmon, 0 gasprodmon
              FROM a
             WHERE ID = 'HBsRf0t6UI' AND CLASS = 11
          GROUP BY year_mon
          UNION ALL
          SELECT   year_mon, 0, SUM (wellgasmon), 0
              FROM b
             WHERE ID = 'HBsRf0t6UI' AND CLASS = 11
          GROUP BY year_mon
          UNION ALL
          SELECT   year_mon, 0, 0, SUM (gasprodmon)
              FROM c
             WHERE ID = 'HBsRf0t6UI' AND CLASS = 11
          GROUP BY year_mon)
GROUP BY year_mon

現在拿出來供大家交流一下,如果還有其它好的辦法,希望各位能拿出來分享~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.