oracle的decode 含義及使用介紹

2021-12-30 06:26:20 字數 1622 閱讀 3795

含**釋:

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

decode(欄位或字段的運算,值1,值2,值3)

這個函式執行的結果是,當字段或字段的運算的值等於值1時,該函式返回值2,否則返回值3

當然值1,值2,值3也可以是表示式,這個函式使得某些sql語句簡單了許多

使用方法:

1、比較大小

selectdecode(sign(變數1-變數2),-1,變數1,變數2) from dual; --取較小值

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

例如:變數1=10,變數2=20

則sign(變數1-變數2)返回-1,decode解碼結果為「變數1」,達到了取較小值的目的。

2、此函式用在sql語句中,功能介紹如下:

decode函式與一系列巢狀的 if-then-else語句相似。base_exp與compare1,compare2等等依次進行比較。如果base_exp和 第i 個compare項匹配,就返回第i 個對應的value 。如果base_exp與任何的compare值都不匹配,則返回default。每個compare值順次求值,如果發現乙個匹配,則剩下的compare值(如果還有的話)就都不再求值。乙個為null的base_exp被認為和null compare值等價。如果需要的話,每乙個compare值都被轉換成和第乙個compare 值相同的資料型別,這個資料型別也是返回值的型別。

decode函式在實際開發中非常的有用

結合lpad函式,如何使主鍵的值自動加1並在前面補0

selectlpad(decode(count(記錄編號),0,1,max(to_number(記錄編號)+1)),14,'0')記錄編號from tetdmis

eg:select decode(dir,1,0,1) from a1_interval

dir 的值是1變為0,是0則變為1

比如我要查詢某班男生和女生的數量分別是多少

通常我們這麼寫:

select count(*) from 表 where 性別 = 男;

select count(*) from 表 where 性別 = 女;

要想顯示到一起還要union一下,太麻煩了

用decode呢,只需要一句話

select sum(decode(性別,男,1,0)),sum(decode(性別,女,1,0)) from 表

eg:select sum(decode(siteno,'lt',1,0)),sum(decode(siteno,'sz',1,0)) from facd605;

select sum(case siteno when 'lt' then 1 else 0 end),sum(case siteno when 'sz' then 1 else 0 end) from facd605;

vinson

Oracle的decode的妙用

最近做了乙個報表查詢,需要從資料庫中獲取某個 商某乙個月以來的每天的供貨記錄.由於表設計的時候每一條供貨記錄對應資料庫中的一條記錄,所以存在乙個行轉列的問題,這時decode函式的功能就能得一體現了.我想了個比較傻的辦法,sum decode to char t.sami samplelingtim...

oracle中的decode函式

decode函式的用法解釋 1 decode 條件,a,b,c 相當於 if 條件 a then b else c 2 decode 條件,a,b,c d,e,f,g 相當於 if 條件 a then b else if 條件 c then d,else if 條件 e then f else g ...

oracle中的decode函式

decode函式是oracle pl sql是功能強大的函式之一,目前還只有oracle公司的sql提供了此函式,其他資料庫廠商的sql實現還沒有此功能。decode有什麼用途 呢?先構造乙個例子,假設我們想給智星職員加工資,其標準是 工資在8000元以下的將加20 工資在8000元以上的加15 通...