decode()與nvl的使用

SQL中 decode()函數簡介

  

 

      

 

 decode()函數簡介:html

主要做用:將查詢結果翻譯成其餘值(即以其餘形式表現出來,如下舉例說明);sql

使用方法:ide

Select decode(columnname,值1,翻譯值1,值2,翻譯值2,...值n,翻譯值n,缺省值)函數

From talbenamespa

Where …翻譯

其中columnname爲要選擇的table中所定義的column,code

·含義解釋:htm

decode(條件,值1,翻譯值1,值2,翻譯值2,...值n,翻譯值n,缺省值)的理解以下:blog

if (條件==值1)get

 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.

SELECT NAME,NVL(TO_CHAR(COMM),'NOT APPLICATION') FROM TABLE1;

若是用到decode函數中就是

select monthid,decode(nvl(sale,6000),6000,'NG','OK') from output

 

sign()函數根據某個值是0、正數仍是負數,分別返回0、一、-1,

若是取較小值就是

select monthid,decode(sign(sale-6000),-1,sale,6000) from output,即達到取較小值的目的。

分類: sql相關

相關文章
相關標籤/搜索