首页 > 代码库 > Oracle存储过程根据传入参数查询
Oracle存储过程根据传入参数查询
Oracle存储过程中根据传入参数查询时无效
环境:Oracle11g
需求:根据传入的参数作为条件,查询相关数据
问题:条件无效
代码:
create or replace procedure XXX(associatedId in varchar,typeinfoid in varchar)
as
sheetcontent clob;
begin
select wm_concat(t.datasource) into sheetcontent from xly_associatedorder t
where t.associatedid = associatedId and t.typeinfoid = typeinfoid;
end XXX;
解决办法:
create or replace procedure XXX (associatedId in varchar,typeinfoid in varchar)
as
sheetcontent clob;
p1 varchar(50);
p2 varchar(50);
begin
p1:=associatedId;
p2:=typeinfoid;
select wm_concat(t.datasource) into sheetcontent from xly_associatedorder t
where t.associatedid =p1 and t.typeinfoid =p2;
end XXX;
Oracle存储过程根据传入参数查询
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。