1. 程式人生 > >decode用法

decode用法

decode(value,if1,then1,if2,then2,if3,then3,...,else)
含義為
if  條件=值1 then
    return(value 1)
else if條件=值2 then
    return(value 2)
    ......
else if 條件=值n then
    return(value 3)
else
    return(default)
endif

Value 代表某個表的任何型別的任意列或一個通過計算所得的任何結果。當每個value值被測試,如果value的值為if1,Decode 函式的結果是then1;如果value等於if2,Decode函式結果是then2;等等。事實上,可以給出多個if/then 配對。如果value結果不等於給出的任何配對時,Decode 結果就返回else 。

 


作者:weeknd 
來源:CSDN 
原文:https://blog.csdn.net/weeknd/article/details/71157044 

補充:

字串中

(NVL(length(regexp_replace(id, '[^,]', NULL)),decode(ltrim(id),null,-1,0)) +1)