Oracle裡的交叉SQL語句寫法

來源:互聯網
上載者:User
oracle|語句
執行個體說明

資料表結構(紅色為主鍵)==>
主表:TEST_PART_COST_TAB(料號資料表)
PART_NO  VARCHAR2(20)   
PART_NAME  VARCHAR2(50) 

從表:TEST_PART_COST_DT_TAB(料號成本資料表)
PART_NO VARCHAR2(10) 
COST_ID VARCHAR2(5) 
COST NUMBER 

資料==>
主表資料:
 PART_NO  PART_NAME
1 1000            name1000 
2 1001            name1001 
從表資料:
PART_NO COST_ID  COST
1 1000        100              1.1 
2 1000        200              1.2 
3 1000        300              1.3
4 1000        321              1.321 
5 1001        100              2.1 

交叉資料==>
SQL語句產生的結果
PART_NO  PART_NAME COST_100 COST_200 COST_300 COST_321
1 1000          name1000       1.1                   1.2                 1.3        1.321
2 1001          name1001       2.1                   0                    0                0

具體的交叉SQL語句寫法:
select a.part_no,a.part_name,
--sum(b.cost)
sum(case when  b.cost_id = '100' then b.cost else 0 end) as cost_100,
sum(case when  b.cost_id = '200' then b.cost else 0 end) as cost_200,
sum(case when  b.cost_id = '300' then b.cost else 0 end) as cost_300,
sum(case when  b.cost_id = '321' then b.cost else 0 end) as cost_321

from test_part_cost_tab a,test_part_cost_dt_tab b
where a.part_no = b.part_no
group by a.part_no,a.part_name

PS: 若主表有資料,從表沒有資料時,交叉後會沒有相應的資料
解決辦法是在WHERE條件裡用外串連
where a.part_no = b.part_no(+)

參考資料:
http://www.cnblogs.com/iouniuniu/archive/2004/04/05/5238.aspx  ==>此文的文法與本文的文法不同
http://it.icxo.com/htmlnews/2004/11/11/454293.htm  
http://www.itpub.net/176727.html


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.