PL/SQL 05 存储过程 procedure

Posted john2017

tags:

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

--存储过程(不带参数)

create or replace procedure 存储过程名
as
  变量、常量声明;
begin
  代码;
end;


--存储过程(带输入参数)

create or replace procedure 存储过程名(参数1 类型,参数2 类型,...)   --可以设默认值,如low int:=1000
as
  变量、常量声明;
begin
  代码;
end;


--存储过程(带输出参数)

create or replace procedure 存储过程名(参数1 out 类型,参数2 类型,...)   --如avgscore out stu.score%type
as
  变量、常量声明;
begin
  代码;
end;


--存储过程内部返回用 return;


--存储过程和游标配合使用

create or replace procedure  test1(j emp.job%type)
as
  cursor test
  is select empno,ename from emp where job=j;
  eno emp.empno%type;
  ena emp.ename%type;
begin
  open test;
  loop
    fetch test into eno,ena;
    exit when test%notfound;
     dbms_output.put_line(eno||‘ ‘||ena);
  end loop;
  close test;
end;


--例子 常量加前缀v_  参数加前缀p_ (不要和表字段一样,会出问题)
create or replace procedure
  pro_test(p_stuno varchar2)
as
  v_score number(3);
  cursor cur_test is
  select sco.score from score sco 
  where sco.stuno=p_stuno;
begin
  open cur_test;
  loop
  fetch cur_test into v_score;
  exit when cur_test%notfound;
  dbms_output.put_line(p_stuno|| ‘ score is: ‘||v_score);
  end loop;
  close cur_test;
end;


--调用存储过程
begin
  pro_test(‘stu001‘);
end;























































以上是关于PL/SQL 05 存储过程 procedure的主要内容,如果未能解决你的问题,请参考以下文章

PL/Sql 中创建调试调用存储过程

PL/Sql 中创建调试调用存储过程

在 PL/SQL 中列出过程参数

pl/sql编译存储过程卡住的解决方法

在不创建存储过程的情况下将 PL/SQL 发送到 Oracle

ORACLE——存储过程