初次着手写function,确实费了好长时间,一个if就需要有个end if ,并且else必须和if一起使用,可以直接对传进来的参数使用Oracle自带的函数进行处理,并直接做做判断条件。
需求根据如下Java代码,创建一个函数来实现相同的功能:
public static int processCompanyName(String company_name){
String pre_log_n = pre_log+"processCompanyName(String company_name)";
System.out.println( pre_log_n+"::company_name="+company_name );
if( company_name==null )
return 99;
if( "".equals(company_name.trim()) )
return 99;
if( company_name.startsWith("[体验]") )
return 2;
else if( company_name.startsWith("[微信]") )
return 3;
else if( company_name.startsWith("[体验移动") )
return 4;
else if( company_name.startsWith("[采招圈") )
return 5;
else if( company_name.startsWith("[cn]") )
return 6;
else if( company_name.startsWith("[快速]") )
return 7;
else if( company_name.startsWith("[风向标") )
return 8;
else
return 1;
}
通过上面代码可知,需要通过判断company_name(可以理解为一个参数)开头的几个字,来输出特定的阿拉伯数字。
首先Oracle函数的创建语句格式:
CREATE OR REPLACE FUNCTION 函数名
RETURN 返回值类型
IS
声明部分;
BEGIN
函数体;
RETURN 变量;
END;
下面展示我写的案例:
形式1:声明一个参数(category_2),然后把传进来的数值(category)赋给该参数,然后通过判断参数category_2,来得到结果。
create or replace function get_source_id1
( category in varchar2)
return number
is
category_2 VARCHAR2(50);
category_source number(10);
begin
category_2:=category;
if substr(category_2,1,4)='[采招圈' then
category_source:=5;
END IF;
if substr(category_2,1,4)='[风向标' then
category_source:=8;
END IF;
if substr(category_2,1,5)='[体验移动' then
category_source:=4;
END IF;
if substr(category_2,1,4)='[cn]' then
category_source:=6;
END IF;
if substr(category_2,1,4)='[体验]' then
category_source:=2;
END IF;
if substr(category_2,1,4)='[微信]' then
category_source:=3;
END IF;
if substr(category_2,1,4)='[快速]' then
category_source:=7;
END IF;
if category_2 is null then
category_source:=99;
END IF;
if substr(category_2,1,4) not in ('[快速]','[微信]','[体验]','[cn]','[风向标','[采招圈') and substr(category_2,1,5)!='[体验移动'
then
category_source:=1;
END IF;
RETURN category_source;
end ;
形式2:直接判断传进来的参数。
create or replace function get_source_id
( category in varchar2)
return number
is
category_source number(10);
begin
if substr(category,1,4)='[采招圈' then
category_source:=5;
END IF;
if substr(category,1,4)='[风向标' then
category_source:=8;
END IF;
if substr(category,1,5)='[体验移动' then
category_source:=4;
END IF;
if substr(category,1,4)='[cn]' then
category_source:=6;
END IF;
if substr(category,1,4)='[体验]' then
category_source:=2;
END IF;
if substr(category,1,4)='[微信]' then
category_source:=3;
END IF;
if substr(category,1,4)='[快速]' then
category_source:=7;
END IF;
if category is null then
category_source:=99;
END IF;
if substr(category,1,4) not in ('[快速]','[微信]','[体验]','[cn]','[风向标','[采招圈') and substr(category,1,5)!='[体验移动'
then
category_source:=1;
END IF;
RETURN category_source;
end ;