oracle程序包或函数处于无效状态

createorreplacefunctionmyfun(xnumber)returnvarcharassushuvarchar(100);begincnumber:=0... create or replace function myfun(x number)
return varchar as sushu varchar(100);
begin
c number := 0;
i number := 2;
while i < a
loop
if mod(x,i) =0 then
c := c+1;
exit;
end if;
i := i + 1;
end loop;
if c = 1 then
sushu := '不是素数';
else
sushu :='是素数';
end if;
return sushu;
end;
create or replace function myfun(x number)
return varchar as sushu varchar(100);
begin
c number := 0;
i number := 2;
while i < x
loop
if mod(x,i) =0 then
c := c+1;
exit;
end if;
i := i + 1;
end loop;
if c = 1 then
sushu := '不是素数';
else
sushu :='是素数';
end if;
return sushu;
end;
展开
 我来答
一不由心处认真2571
2018-10-08 · TA获得超过2236个赞
知道大有可为答主
回答量:5521
采纳率:0%
帮助的人:697万
展开全部
1、你的存储过程有错误,编译不通过。处理于无效状态。2、问题 存储过程中隐式游标的select 语句必须要有into子句。 而 select * from temp_syckzl_zy 这是一个没有意义的语句; 应改为如:select col1 into v_col1 from temp_syckzl_zy; 注:col1为表中一字段,v_col1为一变量
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式