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);
上一篇: web实验二