welsper.jer
2020-12-24 18:53
declare
cursor cemp is
select empno, sal from emp;
cempno emp.empno%type;
csal emp.sal%type;
empcount number := 0;
totalsal number;
begin
open cemp;
select sum(sal) into totalsal from emp;
loop
fetch cemp
into cempno, csal;
--判断涨后工资是否超过5万
exit when totalsal + csal * 0.1> 50000;
update emp set sal = sal + sal * 0.1 where empno = cempno;
exit when cemp%notfound;
empcount := empcount + 1;
--涨后工资总额
totalsal := totalsal + csal * 0.1;
end loop;
close cemp;
dbms_output.put_line('涨工资人数: ' || empcount || ' 总工资: ' || totalsal);
end;
还没有人回答问题,可以看看其他问题
Oracle数据库开发必备利器之PL/SQL基础
75048 学习 · 208 问题
相似问题