形式3:也可以定义两个参数,用来接收传进来的参数,通过判断这两个参数,来得到结果。
create or replace function get_source_id
( category in varchar2)
return number
is
category_5 VARCHAR2(50);
category_4 VARCHAR2(50);
category_source number(10);
begin
category_5:=substr(category,1,5);
category_4:=substr(category,1,4);
if category_4='[采招圈' then
category_source:=5;
END IF;
if category_4='[风向标' then
category_source:=8;
END IF;
if category is null then
category_source:=99;
end if ;
if category_4='[cn]' then
category_source:=6;
END IF;
if category_4='[体验]' then
category_source:=2;
END IF;
if category_4='[微信]' then
category_source:=3;
END IF;
if category_4='[快速]' then
category_source:=7;
end if;
if category_5='[体验移动' then
category_source:=4;
end if;
if category_4 not in ('[快速]','[微信]','[体验]','[cn]','[风向标','[采招圈') and category_5 !='[体验移动]'then
category_source:=1;
end if;
return category_source;
end;
对于Oracle 函数的初次体会:
1.在我的例子中category这个是定义个输入值,它是一个一个去传进来的。
2.oracle 函数区别去存储过程,前者必须有一个返回值,存储过程非必需。
3.oracle函数中没出现一个if,就需要有个end if和他匹配。
4.对于无参函数的定义和调用都没有圆括号,但无参存储过程需要,例如我的category in varchar2 ,而不是category in varchar2(10)。