据用户输入的部门编号实现在PL/SQL中逐行显示emp表中该部门员工的工资级别。工资级别是:当工资
据用户输入的部门编号实现在PL/SQL中逐行显示emp表中该部门员工的工资级别。工资级别是:当工资为空时,为没有工资,工资在1000元以下的为‘低’,在1000和3000...
据用户输入的部门编号实现在PL/SQL中逐行显示emp表中该部门员工的工资级别。工资级别是:当工资为空时,为没有工资,工资在1000元以下的为‘低’,在1000和3000之间的为‘中’,高于3000元的为‘高’。要求使用参数化游标。有异常处理,如果输入的部门编号不存在,则显示'你输入的部门编号不存在'。这个异常该怎么加?我的其他功能都实现了,就剩这个异常了。下面是我的代码:
CREATE OR REPLACE PROCEDURE QUERY_SAL_DEPTNO
(
V_DEPTNO IN emp.Deptno%type
) AS
type sp_emp_cursor is ref cursor;
test_cursor sp_emp_cursor;
v_empno emp.empno%type;
v_ename emp.ename%type;
v_sal emp.sal%type;
s_sal varchar2(50);
BEGIN
open test_cursor for select ename,sal from emp where deptno = v_deptno;
loop
fetch test_cursor into v_ename,v_sal;
exit when test_cursor%notfound;
case when nvl(v_sal,0)=0 then s_sal:='没有工资';
when nvl(v_sal,0)<1000 then s_sal:='是低工资';
when nvl(v_sal,0)>3000 then s_sal:='是高工资';
else s_sal:='是中等工资';
end case;
dbms_output.put_line(v_ename||',工资为'||v_sal||','||s_sal);
end loop;
close test_cursor;
END QUERY_SAL_DEPTNO; 展开
CREATE OR REPLACE PROCEDURE QUERY_SAL_DEPTNO
(
V_DEPTNO IN emp.Deptno%type
) AS
type sp_emp_cursor is ref cursor;
test_cursor sp_emp_cursor;
v_empno emp.empno%type;
v_ename emp.ename%type;
v_sal emp.sal%type;
s_sal varchar2(50);
BEGIN
open test_cursor for select ename,sal from emp where deptno = v_deptno;
loop
fetch test_cursor into v_ename,v_sal;
exit when test_cursor%notfound;
case when nvl(v_sal,0)=0 then s_sal:='没有工资';
when nvl(v_sal,0)<1000 then s_sal:='是低工资';
when nvl(v_sal,0)>3000 then s_sal:='是高工资';
else s_sal:='是中等工资';
end case;
dbms_output.put_line(v_ename||',工资为'||v_sal||','||s_sal);
end loop;
close test_cursor;
END QUERY_SAL_DEPTNO; 展开
1个回答
展开全部
存储过程:
create or replace procedure emp_select(v_no in int,ref_cur out sys_refcursor) AS
BEGIN
open ref_cur for SELECT ename,sal FROM emp where deptno=v_no;
end emp_select;
调用程序:
declare
s_cur SYS_REFCURSOR;
v_no int;
v_name varchar2(10);
v_sal number;
s_sal varchar2(2);
begin
v_no:=&vno;
emp_select(v_no,s_cur);
loop
fetch s_cur into v_name,v_sal;
exit when s_cur%notfound;
case when nvl(v_sal,0)=0 then s_sal:='';
when nvl(v_sal,0)<1000 then s_sal:='低';
when nvl(v_sal,0)<3000 then s_sal:='中';
else s_sal:='高';
end case;
dbms_output.put_line(substr(v_name||' ',1,10)||s_sal);
end loop;
end;
create or replace procedure emp_select(v_no in int,ref_cur out sys_refcursor) AS
BEGIN
open ref_cur for SELECT ename,sal FROM emp where deptno=v_no;
end emp_select;
调用程序:
declare
s_cur SYS_REFCURSOR;
v_no int;
v_name varchar2(10);
v_sal number;
s_sal varchar2(2);
begin
v_no:=&vno;
emp_select(v_no,s_cur);
loop
fetch s_cur into v_name,v_sal;
exit when s_cur%notfound;
case when nvl(v_sal,0)=0 then s_sal:='';
when nvl(v_sal,0)<1000 then s_sal:='低';
when nvl(v_sal,0)<3000 then s_sal:='中';
else s_sal:='高';
end case;
dbms_output.put_line(substr(v_name||' ',1,10)||s_sal);
end loop;
end;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询