使用PL/SQL创建,测试Oracle存储过程

首先在左边的文件夹中选中procedures文件夹,新建一个存储过程,如下:

create or replace procedure uc_users_amount_pro(endDate in varchar2) 
is

  insMember    number;
  perMember    number;
  insMemberMon number;
  perMemberMon number;

--  变量名    表名.字段名%type;

--  rowtype表示该类型为行数据类型,存储的是一行数据,一行数据里可以有多列,类似于表里的一行数据,也可以是游标里的一行数据,如:
--  vs_row1  表%rowtype;
--  vs_row2  游标%rowtype;

--  CURSOR 游标名 [( 参数 in type)] IS
--  Select 语句

begin
  select count(*)
    into insMember
    from uc_users u, uc_form f
   where u.form_id = f.id
     and f.form_cn = '企业会员'
     and u.gmt_create < to_timestamp(endDate,'yyyy-mm-dd');
  select count(*)
    into perMember
    from uc_users u, uc_form f
   where u.form_id = f.id
     and f.form_cn = '个人会员'
     and u.gmt_create < to_timestamp(endDate,'yyyy-mm-dd');
  select count(*)
    into insMemberMon
    from uc_users u, uc_form f
   where u.form_id = f.id
     and f.form_cn = '企业会员'
     and to_char(u.gmt_create, 'yyyy-mm') =
         to_char(to_timestamp(endDate, 'yyyy-mm-dd'), 'yyyy-mm');
  select count(*)
    into perMemberMon
    from uc_users u, uc_form f
   where u.form_id = f.id
     and f.form_cn = '个人会员'
     and to_char(u.gmt_create, 'yyyy-mm') =
         to_char(to_timestamp(endDate, 'yyyy-mm-dd'), 'yyyy-mm');
  dbms_output.put_line(insMember || ' ' || perMember || ' ' ||
                       insMemberMon || '' || perMemberMon);
end uc_users_amount_pro;

点击左上角的运行按钮,执行这个存储过程


会在下方看见编译成功的提示


然后在这个存储过程的名字上方右键->Test


在下方如图所示输入存储过程中定义的参数的值

点击上方这个按钮开始调试这个存储过程


先不要点击运行按钮,否则看不到效果,点击左数第二个(单步执行)


当运行到你的输出语句时,把鼠标放在变量上面会看见此时变量的值,如下图:


测试完毕

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值