Oracle函数中对变量赋值不起作用,用的是oracle11g 5

createorreplaceFUNCTIONtoTestReturn(costcenterIdvarchar2)RETURNintISrootIdvarchar2(32... create or replace
FUNCTION toTestReturn
(
costcenterId varchar2
)
RETURN int
IS
rootId varchar2 (32);
sumnum int;
BEGIN
rootId := nvl(costcenterId, '0');
--select count(pid) into rootId from costcenterinfo where ID=rootId;
select count(pid) into sumnum from costcenterinfo where id=costcenterId;

RETURN sumnum;
END toTestReturn;

当我用select count(pid) into sumnum from costcenterinfo where id=costcenterId;时,sql调用函数是能返回sumnum=1的,但是当我使用注释的select count(pid) into rootId from costcenterinfo where ID=rootId;,sql调用函数返回的是null

不知道什么原因
上面的函数有点错误,应该是这样的:
create or replace
FUNCTION toTestReturn
(
costcenterId varchar2
)
RETURN varchar2
is
rootId varchar2 (32);
temp varchar2 (32);
BEGIN
rootId := nvl(costcenterId, '0');
select pid into temp from costcenterinfo where ID=rootId;
RETURN temp;

END toTestReturn;

现在调用函数时传的值肯定是不为空且pid也肯定有值,但是返回temp为null
展开
 我来答
dngoryaner
2012-10-15 · TA获得超过2350个赞
知道小有建树答主
回答量:2404
采纳率:0%
帮助的人:1133万
展开全部
--select count(pid) into rootId from costcenterinfo where ID=rootId;
select count(pid) into sumnum from costcenterinfo where id=costcenterId;

RETURN sumnum;

因脊蚂为你返回的旅辩是sumnum,使拆野缺用注释的你赋值给了rootId 所有返回NULL。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式