業務要求:當ptr.offdate為空時,按stu.preformaltime計算轉正日期,當str.offdate不為空時,按offdate計算轉正日期
用decode()邏輯描述就是decode(ptr.offdate,null,stu.preformaltime,ptr.offdate) offdate
意思是:
if (ptr.offdate==null)
then
return(stu.preformaltime)
elsif (ptr.offdate!=null)
then
return(prt.offdate)
decode()函式簡介:
主要作用:將查詢結果翻譯成其他值(即以其他形式表現出來,以下舉例說明);
使用方法:
select decode(columnname,值1,翻譯值1,值2,翻譯值2,…值n,翻譯值n,預設值)
from tablename
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等;
舉例說明 :
//當ptr.offdate為空的時候,返回stu.preformaltime的值,
//不為空的時候,預設為ptr.offdate的值
select ptr.usercode,stu.username,ptr.startdate,ptr.projectcode,std.deptname projectname,
stu.preformaltime,
decode(ptr.offdate,null,stu.preformaltime,ptr.offdate) offdate
where stu.usercode = ptr.usercode and std.deptcode=stu.projectcode and ptr.status = 'y'
and to_char(decode(ptr.offdate,null,stu.preformaltime,ptr.offdate),'yyyy-mm') like concat('$','%' )
SQL中的decode 函式
decode 函式是sql中比較常見的函式,主要用於將查詢結果翻譯成其他值,下面將為您介紹sql中decode 函式,供您參考。decode 函式簡介 主要作用 將查詢結果翻譯成其他值 即以其他形式表現出來,以下舉例說明 使用方法 select decode columnname,值1,翻譯值1,值...
sql中的decode函式
1 使用decode判斷字串是否一樣 decode value,if1,then1,if2,then2,if3,then3,else 含義為if 條件 值1 then return value 1 elsif 條件 值2 then return value 2 elsif 條件 值n then re...
oracle中的SQL函式 decode
今天在修改乙個儲存過程,但是遇到了游標裡的資料在迴圈時,被迴圈的表裡沒有游標裡對應的資料,然後報錯,就想給沒有的賦值0,然後使用了decode 結果還是不可以,後來試了好多,比如select count from table進行判斷都不可以。最後算然用了一下判斷,將count的值進行判斷,最後才搞出...