oracle存储过程中执行查询sql语句报错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle存储过程中执行查询sql语句报错相关的知识,希望对你有一定的参考价值。
Create Or Replace Procedure UP_ExecSqlProcForDS(strSql In Varchar2,cur_out Out sys_refcursor)
As
Begin
Open cur_out For
Execute immediate strSql;
End;
strSql是一条查询sql语句,类似于select * from table,我想要的是给存储过程传一个查询的sql语句,然后存储过程给我返回结果集,怎么弄?
CREATE OR REPLACE FUNCTION UP_ExecSqlProcForDS RETURN NUMBER IS
CURSOR tmcur_out IS
select *from table
;
begin
FOR l_cur IN tmcur_out LOOP
end loop
exception
end
这个只是框架,你自己可以 根据自己的需要作适当修改 参考技术B Open cur_out For strsql;
这个是么?
这是定义游标的使用方法,游标的语法是一个SELECT语句的字符串
type cursor_type is ref cursor;
c1 cursor_type;
open c1 for selectsql; 参考技术C CREATE OR REPLACE Procedure UP_ExecSqlProcForDS(strSql In Varchar2,cur_out Out sys_refcursor)
As
Begin
Open cur_out For
strSql;
End;本回答被提问者采纳 参考技术D 我空间有个关于存储过程的,看看能不能帮到你。
以上是关于oracle存储过程中执行查询sql语句报错的主要内容,如果未能解决你的问题,请参考以下文章
Oracle存储过程执行报错:无效的sql语句。 在plsql中: execute proc_test_exit_when;
oracle存储过程中update语句一直在执行中,无法更新完成