oracle 存储过程 单条 多条 逻辑
Posted IT的鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 存储过程 单条 多条 逻辑相关的知识,希望对你有一定的参考价值。
--用存储过程返回一条记录
CREATE OR REPLACE PROCEDURE proc_select02
(vperson out TBLTVDR_N8770B_STIH237%rowtype)
is
begin
select * into vperson from TBLTVDR_N8770B_STIH237 where nuid = 'B8A10002';
end;
declare n TBLTVDR_N8770B_STIH237%rowtype;
begin
proc_select02(vperson=>n);
dbms_output.put_line('The input string is:' || n.nuid);
end;
--用存储过程返回一个结果集
create or replace procedure proc_select06(out_var out sys_refcursor)
as
begin
open out_var for select * from TBLTVDR_N8770B_STIH237;
end;
declare
v_out sys_refcursor;
begin
proc_select06(v_out);
end;
以上是关于oracle 存储过程 单条 多条 逻辑的主要内容,如果未能解决你的问题,请参考以下文章
oracle 存储过程通过输入条件查询,返回多条记录和记录数。