Oracle存储过程,PLS-00103,Oracle存储过
数据库-mysql教程
漫画源码手机版,ubuntu查看当前内核,访问tomcat出现列目录,php爬虫图片,PHP手机网站导航,seo外包首荐乐云seolzw
Oracle存储过程中mdash;mdash;PLS-00103:出现符号ldquo;/rdquo;在需要下列之一时:(网易云课堂完整源码,ubuntu刷手机系统,java爬虫抓图片,北京php架构师工资收入多少,seo卫衣lzw
网页游戏私服源码搭建,怎么搜索ubuntu文件,tomcat版本9.0会怎么样,电影爬虫的代码,php 关联数组转数字索引,seo营销思维lzw
Oracle中编写一存储过程:出现如下错误,
PLS-00103:出现符号“/”在需要下列之一时:(
经过各种谷歌百度,在存储过程中定义变量不允许使用关键字,而我定义了变量sum,导致错误。
经过编译后的过程代码为:
create or replace procedure avg_sal(result out char)
is
i number(5);
summ number(20);
countnum number(20);
begin
i:=10;
while i<40 loop
i:= i+10;
select sum(salary),count(*) into summ countnum from emp where deptno=i;
result:=summ/countnum;
end loop;
end;
/
,