gpt4 book ai didi

oracle - oracle函数中的可空返回类型

转载 作者:行者123 更新时间:2023-12-04 18:05:27 24 4
gpt4 key购买 nike

是否可以从 oracle 函数返回 null?

我有以下预言机功能:

create or replace function vta.GetAmount(p_month NUMBER)
return number is
v_amount number(9);
begin
select amount
into v_amount
from salary
where salary.month = p_month;
return v_amount;
end GetAmount;

当 select 语句返回零行时,会引发以下异常: ora-01403: no data found .

在这种情况下,我希望函数返回 null。

最佳答案

create or replace function vta.GetAmount(p_month NUMBER)
return number is
v_amount number(9);
begin
select amount
into v_amount
from salary
where salary.month = p_month;
return v_amount;
exception -- code to handle no data
when no_data_found then
return null;
end GetAmount;

关于oracle - oracle函数中的可空返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29792622/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com