decode()函式簡介:
主要作用:將查詢結果翻譯成其他值(即以其他形式表現出來,以下舉例說明);
使用方法:
select decode(columnname,值1,翻譯值1,值2,翻譯值2,...值n,翻譯值n,預設值)
from talbename
where …
其中columnname為要選擇的table中所定義的column,
·含**釋:
decode(條件,值1,翻譯值1,值2,翻譯值2,...值n,翻譯值n,預設值)的理解如下:
if (條件==值1)
then
return(翻譯值1)
elsif (條件==值2)
then
return(翻譯值2)
......
elsif (條件==值n)
then
return(翻譯值n)
else
return(預設值)
end if
注:其中預設值可以是你要選擇的column name 本身,也可以是你想定義的其他值,比如other等;
舉例說明:
現定義一table名為output,其中定義兩個column分別為monthid(var型)和sale(number型),若sale值=1000時翻譯為d,=2000時翻譯為c,=3000時翻譯為b,=4000時翻譯為a,如是其他值則翻譯為other;
sql如下:
select monthid , decode (sale,1000,'d',2000,'c',3000,'b',4000,'a',』other』) sale from output
特殊情況:
若只與乙個值進行比較
select monthid ,decode(sale, null,『---』,sale) sale from output
另:decode中可使用其他函式,如nvl函式或sign()函式等;
nvl(expr1,expr2)
若expr1是null,則返回expr2,否則返回expr1.
如果用到decode函式中就是
select monthid,decode(nvl(sale,6000),6000,'ng','ok') from output
sign()函式根據某個值是0、正數還是負數,分別返回0、1、-1,
如果取較小值就是
select monthid,decode(sign(sale-6000),-1,sale,6000) from output,即達到取較小值的目的。
SQL DECODE函式使用
decode函式是oracle pl sql是功能強大的函式之一,目前還只有oracle公司的sql提供了此函式,其他資料庫廠商的sql實現還沒有此功能。decode有什麼用途呢?先構造乙個例子,假設我們想給智星職員加工資,其標準是 工資在8000元以下的將加20 工資在8000元以上的加15 通常...
SQL decode()函式用法
decode 函式簡介 主要作用 將查詢結果翻譯成其他值 即以其他形式表現出來,以下舉例說明 使用方法 select decode columnname,值1,翻譯值1,值2,翻譯值2,值n,翻譯值n,預設值 from talbename where 其中columnname為要選擇的table中所...
decode用法 翻譯值
含 釋 decode 條件,值1,返回值1,值2,返回值2,值n,返回值n,預設值 該函式的含義如下 if 條件 值1 then return 翻譯值1 elsif 條件 值2 then return 翻譯值2 elsif 條件 值n then return 翻譯值n else return 預設值...