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(預設值)
END IF
decode(欄位或欄位的運算,值1,值2,值3)
這個函式執行的結果是,當欄位或欄位的運算的值等於值1時,該函式返回值2,否則返回值3
當然值1,值2,值3也可以是表示式,這個函式使得某些sql語句簡單了許多
使用方法:
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、此函式用在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
select LPAD(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 decode(性別,男,1,0),decode(性別,女,1,0) from 表
3,order by對字元列進行特定的排序
大家還可以在Order by中使用Decode。
例:表table_subject,有subject_name列。要求按照:語、數、外的順序進行排序。這時,就可以非常輕鬆的使用Decode完成要求了。
select * from table_subject order by decode(subject_name, '語文', 1, '數學', 2, , '外語',3)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29519108/viewspace-2055573/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle中Decode()函式的使用Oracle函式
- 代替DECODE的CASE
- Oracle資料庫Decode()函式的使用方法Oracle資料庫函式
- 7.76 DECODE
- oracle中的decode(函式)Oracle函式
- golang url decodeGolang
- decode函式函式
- hackmyvm--Decode
- 使用oracle decode對錶字元列進行order by 排序Oracle字元排序
- DECODE和CASE的效能比較
- perl encode,decode
- [Decode error - output not utf-8] lua 使用string.subError
- python encode和decode的妙用Python
- 學習 instr 和decode的用法
- PHP中json_decode()和json_encode()的使用方法PHPJSON
- Encode and Decode Strings
- decode實現行轉列的查詢
- Kaldi的decode測試資料結果
- 使用 Sublime 工具時報Decode error - output not utf-8解決辦法Error
- json_decode詳解JSON
- Leetcode-Decode WaysLeetCode
- Decode Ways leetcode javaLeetCodeJava
- Could not decode a text frame as UTF-8 的解決
- leetcode-91-Decode WaysLeetCode
- php json_decode返回nullPHPJSONNull
- Case表示式與decode()函式函式
- LeetCode-Decode StringLeetCode
- 【SQL 學習】函式之DECODE()SQL函式
- 通過decode計算相似度
- Oracle Decode()函式和CASE語句的比較Oracle函式
- Sublime Text: [Decode error - output not utf-8]Error
- update修改為merge(max+decode)
- [轉]decode函式和行列互換函式
- mysql實現oracle的decode和translate以及管道符拼接MySqlOracle
- 字串的encode與decode解決亂碼問題字串
- Composer 提示 zlib_decode (): data errorError
- LeetCode-Encode and Decode StringsLeetCode
- sublime 出現 [Decode error - output not utf-8]Error