溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

oracle中如何使用decode函數(shù)

發(fā)布時間:2021-07-24 17:15:33 來源:億速云 閱讀:207 作者:Leah 欄目:數(shù)據(jù)庫

今天就跟大家聊聊有關(guān)oracle中如何使用decode函數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

  一、DECODE函數(shù)是ORACLE PL/SQL是功能強大的函數(shù)之中的一個,眼下還僅僅有ORACLE公司的SQL提供了此函數(shù),其它數(shù)據(jù)庫廠商的SQL實現(xiàn)還沒有此功能。DECODE有什么用途 呢? 先構(gòu)造一個樣例,如果我們想給智星職員加工資,其標(biāo)準(zhǔn)是:工資在8000元下面的將加20%;工資在8000元以上的加15%。通常的做法是。先選出記錄 中的工資字段值? select salary into var-salary from employee,然后對變量var-salary用if-then-else或choose case之類的流控制語句進(jìn)行推斷。 假設(shè)用DECODE函數(shù),那么我們就能夠把這些流控制語句省略。通過SQL語句就能夠直接完畢。例如以下:select decode(sign(salary - 8000),1,salary*1.15,-1,salary*1.2,salary from employee 是不是非常簡潔?

  二、DECODE的語法:DECODE(value,if1,then1,if2,then2,if3,then3,...,else)。表示假設(shè)value 等于if1時,DECODE函數(shù)的結(jié)果返回then1,...,假設(shè)不等于不論什么一個if值。則返回else。初看一下。DECODE 僅僅能做等于測試,但剛才也看到了,我們通過一些函數(shù)或計算替代value。是能夠使DECODE函數(shù)具備大于、小于或等于功能。

  三、該函數(shù)的含義例如以下:

  IF 條件=值1 THEN

           RETURN(翻譯值1)

  ELSIF 條件=值2 THEN

           RETURN(翻譯值2)

  ......

  ELSIF 條件=值n THEN

           RETURN(翻譯值n)

  ELSE

           RETURN(缺省值)

  END IF

  四、該函數(shù)的含義例如以下:

  IF 條件=值1 THEN

           RETURN(翻譯值1)

  ELSIF 條件=值2 THEN

           RETURN(翻譯值2)

  ......

  ELSIF 條件=值n THEN

           RETURN(翻譯值n)

  ELSE

           RETURN(缺省值)

  END IF

  五、比較大小

  select decode(sign(變量1-變量2),-1,變量1,變量2) from dual; --取較小值

  sign()函數(shù)依據(jù)某個值是0、正數(shù)還是負(fù)數(shù)。分別返回0、1、-1

  比如:

  變量1=10,變量2=20

  則sign(變量1-變量2)返回-1。decode解碼結(jié)果為“變量1”。達(dá)到了取較小值的目的。

  六、表、視圖結(jié)構(gòu)轉(zhuǎn)化

  現(xiàn)有一個商品銷售表sale。表結(jié)構(gòu)為:

  month    char(6)      --月份

  sell    number(10,2)   --月銷售金額

  現(xiàn)有數(shù)據(jù)為:

  200001  1000

  200002  1100

  200003  1200

  200004  1300

  200005  1400

  200006  1500

  200007  1600

  200101  1100

  200202  1200

  200301  1300

  想要轉(zhuǎn)化為下面結(jié)構(gòu)的數(shù)據(jù):

  year   char(4)      --年份

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

  month3  number(10,2)   --2月銷售金額

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

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

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

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

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

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

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

  month20  number(10,2)   --10月銷售金額

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

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

  七、結(jié)構(gòu)轉(zhuǎn)化的SQL語句為:

  create or replace view

  v_sale(year,month2,month3,month4,month5,month6,month7,month7,month8,month9,month20,month21,month22)

  as

  select

  substrb(month,1,4),

  sum(decode(substrb(month,5,2),'01',sell,0)),

  sum(decode(substrb(month,5,2),'02',sell,0)),

  sum(decode(substrb(month,5,2),'03',sell,0)),

  sum(decode(substrb(month,5,2),'04',sell,0)),

  八、補充1:

  有學(xué)生成績表student,如今要用decode函數(shù)實現(xiàn)下面幾個功能:成績>85,顯示優(yōu)秀;>70顯示良好;>60及格;否則是不及格。

  如果student的編號為id,成績?yōu)閟core,那么:

  select id, decode(sign(score-85),1,'優(yōu)秀',0,'優(yōu)秀',-1,

  decode(sign(score-70),1,'良好',0,'良好',-1,

  decode(sign(score-60),1,'及格',0,'及格',-1,'不及格')))

  from student。

  補充2:

  Decode函數(shù)的語法結(jié)構(gòu)例如以下:

  decode (expression, search_1, result_1)

  decode (expression, search_1, result_1, search_2, result_2)

  decode (expression, search_1, result_1, search_2, result_2, ...., search_n, result_n)

  decode (expression, search_1, result_1, default)

  decode (expression, search_1, result_1, search_2, result_2, default)

  decode (expression, search_1, result_1, search_2, result_2, ...., search_n, result_n, default)

  decode函數(shù)比較表達(dá)式和搜索字,假設(shè)匹配,返回結(jié)果;假設(shè)不匹配。返回default值;假設(shè)沒有定義default值,則返回空值。

  下面是一個簡單測試,用于說明Decode函數(shù)的使用方法:

  SQL> create table t as select username,default_tablespace,lock_date from dba_users;

  Table created.

  SQL> select * from t;

  USERNAME DEFAULT_TABLESPACE LOCK_DATE

  ------------------------------ ------------------------------ ---------

  SYS SYSTEM

  SYSTEM SYSTEM

  OUTLN SYSTEM

  CSMIG SYSTEM

  SCOTT SYSTEM

  EYGLE USERS

  DBSNMP SYSTEM

  WMSYS SYSTEM 20-OCT-04

  8 rows selected.

  SQL> select username,decode(lock_date,null,'unlocked','locked') status from t;

  USERNAME STATUS

  ------------------------------ --------

  SYS unlocked

  SYSTEM unlocked

  OUTLN unlocked

  CSMIG unlocked

  SCOTT unlocked

  EYGLE unlocked

  DBSNMP unlocked

  WMSYS locked

  8 rows selected.

  SQL> select username,decode(lock_date,null,'unlocked') status from t;

  USERNAME STATUS

  ------------------------------ --------

  SYS unlocked

  SYSTEM unlocked

  OUTLN unlocked

  CSMIG unlocked

  SCOTT unlocked

  EYGLE unlocked

  DBSNMP unlocked

  WMSYS

  8 rows selected.

看完上述內(nèi)容,你們對oracle中如何使用decode函數(shù)有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI