oracle创建过程,以部门号为参数,输出比部门号平均工资低的员工姓名员工号。我写的程序总是带有编译错误

createorreplaceprocedurea(p-deptnoemp.deptno%TYPE)asv-salemp.sal%TYPEbeginselectavg(s... create or replace procedure a(
p-deptno emp.deptno%TYPE)
as
v-sal emp.sal%TYPE
begin
select avg(salary) into v-sal from emp
where deptno=p-deptno;
for v-emp in (select * from emp
where deptno=p-deptno and sal>v-sal)loop
dbms-output.put-line(v-emp.empno||' '||
v-emp.ename);
end loop;
exception
when no-data-found then
dbms-output.put.line("the deptno doesn't exists!")
end a;

警告:创建的函数带有编译错误
展开
 我来答
随o天
2013-01-02 · TA获得超过3158个赞
知道大有可为答主
回答量:1740
采纳率:71%
帮助的人:2038万
展开全部
create or replace procedure a(p_deptno emp.deptno%TYPE) as
v_sal emp.sal%TYPE;
begin
select avg(sal) into v_sal from emp where deptno=p_deptno;
for v_emp in (select * from emp where deptno=p_deptno and sal<v_sal) loop
dbms_output.put_line(to_char(v_emp.empno)||' '||v_emp.ename);
end loop;
exception when no_data_found then
dbms_output.put_line('the deptno doesn’‘t exists!');
end a;
错误地方:
1、所有不是减号“-”的地方都改为下划线“_”.
2、v_sal emp.sal%TYPE 后面缺分号“;”。
3、select avg(salary) into v_sal from emp 中salary”改为sal,后面缺分号“;”。
4、(select * from emp where deptno=p_deptno and sal>v_sal)中sal>v_sal改为sal<v_sal 。
5、(v-emp.empno||' '||v_emp.ename)中v_emp.empno改为to_char(v_emp.empno)。
6、dbms_output.put.line("th deptno doesn't exists!")中put.line改为put_line,缺分号“;”。
双引号改为单引号,doesn't改为doesn‘’t(两个单引号)。
追问

还是提示创建的函数有编译错误。

追答
你的错误没有改全啊。好好看看错在哪儿。实在不行把我写的内容粘贴过去试试吧。
帐号已注销
2013-01-01 · TA获得超过315个赞
知道小有建树答主
回答量:225
采纳率:0%
帮助的人:252万
展开全部
create or replace procedure a(
p-deptno emp.deptno%TYPE)
as
v-sal emp.sal%TYPE
begin
select avg(salary) into v-sal from emp
where deptno=p-deptno;
for v-emp in (select * from emp
where deptno=p-deptno and sal>v-sal)loop
dbms-output.put-line(v-emp.empno||' '||
v-emp.ename);
end loop;
exception
when no-data-found then
dbms-output.put.line("the deptno doesn't exists!");--少个“;”
end;--少个“end;”
end a;
追问
还是不行啊,依然提示编译错误。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式