PL/SQL实例1

Posted 小猪_佩奇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PL/SQL实例1相关的知识,希望对你有一定的参考价值。

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判断
        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 cemp;
      --输出
       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;

以上是关于PL/SQL实例1的主要内容,如果未能解决你的问题,请参考以下文章

PL/SQL 用户自定义异常操作实例

PL/SQL - 调用包过程的新实例

PL/SQL实例

PL/SQL系统定义的异常操作实例讲解

PL/SQL实例1

如何计算 SQL 或 PL/SQL 中字符串末尾的此字符的实例数?