IBATIS 使用数据库函数

本文介绍了一个存储函数的具体实现,该函数根据不同输入参数查询数据库并返回相应记录数。通过三种不同类型的查询展示了如何根据条件筛选数据,并使用异常处理确保函数健壮性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

以后要在项目中多用用存储函数
1 先别写函数
create or replace function select_funtion(v_id   in varchar2, --号码
v_type in varchar2 --类型
) return number is

Result number;
begin

if v_type = 'type1' then

select count(1)
into Result
from tb_test
where C_LEVEL = '1'
and c_id = v_id
and C_CONTITION_1 is not null
and C_CONTITION_2 is null
and C_CONTITION_3 is null
and C_CONTITION_4 is null
and c_Del = '0';
end if;
if v_type = 'type2' then
--得到数量1
select count(1)
into Result
from tb_test
where c_id = v_id
and C_CONTITION_1 is not null
and C_CONTITION_2 is not null
and C_CONTITION_3 is null
and C_CONTITION_4 is null
and C_TEAM is null
and c_Del = '0';
end if;

if v_user_type = 'type3' then
--得到数量2
select ((select count(1)
from tb_test
where c_id = v_id
and C_CONTITION_1 is not null
and C_CONTITION_2 is not null
and C_CONTITION_3 is not null
and C_CONTITION_4 is null
and c_Del = '0'
) +
(select count(1)
from tb_test_2 t
where C_FK_ID = v_id
and t.c_stat = '1'
and c_Del = '0'))
into Result
from dual;
end if;
exception
when no_data_found then
Result := 0;
dbms_output.put_line(Result);
return(0);
end select_function;


2 ibatis sql
<select id="select_funtion" resultClass="java.lang.Integer" parameterClass="java.util.HashMap">

select select_funtion(#c_nme#,#c_phone#) as a from dual

</select>


3 调用
直接调用ibatis查询方法即可
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值