plsql储存过程[通俗易懂]

plsql储存过程[通俗易懂]第九章 存储过程 初识存储过程 存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,存储在数据库中,经过第一次编译后调用不需要再次编译,用户通过指定

plsql储存过程

第九章  存储过程

 

初识存储过程

  存储过程(Stored Procedure)是在大型数据库系统中,一组为了完成特定功能的SQL 语句集,存储在数据库中,经过第一次编译后调用不需要再次编译,用户通过指定存储过程的名字并给出参数(如果该存储过程带有参数)来执行它。存储过程是数据库中的一个重要对象。

  包含一系列PL/SQL语句的集合。

 

创建存储格式

CREATE [OR REPLACE] PROCEDURE procedure_name

  (argument1 [mode1] datatype1,

   argument2 [mode2] datatype2, …)

AS [IS]

   声明部分

BEGIN

   执行部分

EXCEPTION

   异常处理部分

END;

调用存储过程格式

call proc_update_emp();

 

示例:

create or replace procedure pro_stu_update

as

begin

  update student set stu_name=”edit_name” where stu_id=5;

end;

调用

call pro_stu_update();

 

in 示例

根据员工号,查询员工工资

create or replace procedure

       — in表示入参

       pro_emp_selectArray(v_empId in employees.employee_id%type)

as     v_sal employees.salary%type;

begin

  select salary into v_sal from employees where employee_id=v_empId;

  DBMS_OUTPUT.PUT_LINE(“salary:” || v_sal);

end;

— call调用

call pro_emp_selectArray(198);

 

in/out 示例

根据员工号,查询员工工资 带out参数

create or replace procedure

       — in表示入参,out表示出参

       pro_emp_selectArray(v_empId in employees.employee_id%type,v_sal out employees.salary%type)

as

begin

  select salary into v_sal from employees where employee_id=v_empId;

  DBMS_OUTPUT.PUT_LINE(“salary:” || v_sal);

end;

— PL/SQL调用

declare

   对应的参数类型和数量保持一致

   v_empId employees.employee_id%type := “&input_empId”;

   v_sal employees.salary%type;

begin

  pro_emp_selectArray(v_empId,v_sal);

exception

  when no_data_found then

    DBMS_OUTPUT.PUT_LINE(“找不到对应员工”); 

end;

 

 

inout示例

create or replace procedure

       — in/out 参数共用,必须保持参数类型相同

       pro_emp_selectArray(v_param  in out number)

as

begin

  select manager_id into v_param from employees where employee_id=v_param;

  DBMS_OUTPUT.PUT_LINE(“salary:” || v_param);

end;

— PL/SQL调用

declare

   v_param number := “&input_param”;

begin

  pro_emp_selectArray(v_param);

exception

  when no_data_found then

    DBMS_OUTPUT.PUT_LINE(“找不到对应员工”); 

end;

 

多参数传递 示例

create or replace procedure

       pro_multi_params(param1 in number,param2 in number,param3 in number)

as v_sum  number;

begin

  v_sum := param1+param2+param3;

  DBMS_OUTPUT.PUT_LINE(“v_sum:” || v_sum);

end;

— call调用

call pro_multi_params(1,2,3);

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/9547.html

(0)
上一篇 2023-02-05
下一篇 2023-02-06

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注