PL/SQL——统计每年入职的员工人数

/*

--可以得到员工的入职日期

select hiredate from emp;

--但是我们只需要入职年份,所以

select to_char(hiredate,’yyyy’) from emp;

需要一个集合存放入职年份

à光标à循环à退出条件ànotfound

变量:

--每年入职的员工人数

count80 number:=0;

count81 number:=0;

count82 number:=0;

count87 number:=0;

*/

set serveroutput on

declare

       --定义光标

       cursor cemp is select to_char(hiredate,’yyyy’) from emp;

       phiredate varchar2(4);

       --每年入职的员工人数

       count80 number:=0;

count81 number:=0;

count82 number:=0;

count87 number:=0;

begin

       --打开光标

       open cemp;

       loop

              --取出一个员工的入职年份

              fetch cemp into phiredate;

              exit when cemp%notfound;

             

              --判断入职年份

              if phiredate=’1980’ then count80:=count80+1;

                     elsif phiredate=’1981’ then count81:=count81+1;

                     elsif phiredate=’1982’ then count82:=count82+1;

                     else count87:=count87+1;

              end if;

       end loop;

       --关闭光标                   

       close cemo;

       --输出结构

       dbms_output.put_line(‘Total:’||(count80+count81+count82+count87));

       dbms_output.put_line(‘1980:’||count80);

       dbms_output.put_line(‘1981:’||count81);

       dbms_output.put_line(‘1982:’||count82);

       dbms_output.put_line(‘1987:’||count87);

end;

/

猜你喜欢

转载自blog.csdn.net/qq_37117521/article/details/81713014