程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle Decode函數的主要功能介紹

Oracle Decode函數的主要功能介紹

編輯:Oracle數據庫基礎

提及Oracle Decode函數,那麼DECODE的主要用途是什麼呢?我們先要構造一個相關的例子,假如我們想給某公司的職員增加工資的話,所定的標准為,工資少於8000元的將加20%;工資在8000元以上的加15%,通常的做法是,先選出記錄 中的工資字段值?

  1. select salary into var-salary from employee 

然後對變量var-salary用if-then-else或choose case之類的流控制語句進行判斷。

如果用Oracle DECODE函數,那麼我們就可以把這些流控制語句省略,通過SQL語句就可以直接完成。如下:

  1. select decode(sign(salary - 8000),1,
    salary*1.15,-1,salary*1.2,salary from employee 

是不是很簡潔?

DECODE的法:

  1. DECODE(value,if1,then1,if2,then2,if3,then3,...,else) 

表示如果value 等於if1時,DECODE函數的結果返回then1,...,如果不等於任何一個if值,則返回else。初看一下,DECODE 只能做等於測試,但剛才也看到了,我們通過一些函數或計算替代value,是可以使Oracle DECODE函數具備大於、小於或等於功能。

1、比較大小 select decode(sign(變量1-變量2),-1,變量1,變量2) from dual; --取較小值 sign()函數根據某個值是0、正數還是負數,分別返回0、1、-1 例如: 變量1=10,變量2=20 則sign(變量1-變量2)返回-1,decode解碼結果為“變量1”,達到了取較小值的目的。

2、表、視圖結構轉化

現有一個商品銷售表sale,表結構為:

month  char(6)  --月份

sellnumber(10,2) --月銷售金額

現有數據為:

2000011000

2000021100

2000031200

2000041300

2000051400

2000061500

2000071600

2001011100

2002021200

2003011300

想要轉化為以下結構的數據:

year char(4)  --年份

month1number(10,2) --1月銷售金額

month2number(10,2) --2月銷售金額

month3number(10,2) --3月銷售金額

month4number(10,2) --4月銷售金額

month5number(10,2) --5月銷售金額

month6number(10,2) --6月銷售金額

month7number(10,2) --7月銷售金額

month8number(10,2) --8月銷售金額

month9number(10,2) --9月銷售金額

month10number(10,2) --10月銷售金額

month11number(10,2) --11月銷售金額

month12number(10,2) --12月銷售金額

結構轉化的SQL語句為:

  1. create or replace vIEw  
  2. v_sale(year,month1,month2,month3,month4,month5,
    month6,month7,month8,month9,month10,month11,month12)  
  3. as  
  4. select  
  5. substrb(month,1,4),  
  6. sum(decode(substrb(month,5,2),'01',sell,0)),  
  7. sum(decode(substrb(month,5,2),'02',sell,0)),  
  8. sum(decode(substrb(month,5,2),'03',sell,0)),  
  9. sum(decode(substrb(month,5,2),'04',sell,0)),   
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved