您的位置:首页 > 数据库 > Oracle

Oracle中使用Table()函数解决For循环中不写成 in (l_idlist)形式的问题

2010-08-22 16:13 609 查看
在实际PL/SQL编程中,我们要对动态取出来的一组数据,进行For循环处理,其基本程序逻辑为:

invalid number,ORA-06512: at "TT.GETIDLIST", line 6

解决方案:

CREATE OR REPLACE TYPE type_split IS TABLE OF VARCHAR2 (4000);


create or replace procedure getidlist
is
l_idlist varchar2(200);
begin
l_idlist:='1,2,3,4';
for brrs in (select * from bldroom where bldroomid in (select column_value from table(split(l_idlist,','))))
loop
brrs.structure:='钢混';
end loop;
end;
/
show err;


执行:exec getidlist;

提示错误:ORA-22905: cannot access rows from a non-nested table item

再次修改getidlist代码如下:

OK,搞定。

附:PL/SQL表---table()函数用法

摘录

/*
利用table()函数,我们可以将PL/SQL返回的结果集代替table。
oracle内存表在查询和报表的时候用的比较多,它的速度相对物理表要快几十倍。
*/
/*
simple example:
1、table()结合数组:
*/

create or replace type t_test as object(
id integer,
rq date,
mc varchar2(60)
);

create or replace type t_test_table as table of t_test;

create or replace function f_test_array(n in number default null) return t_test_table
as
v_test t_test_table := t_test_table();
begin
for i in 1 .. nvl(n,100) loop
v_test.extend();
v_test(v_test.count) := t_test(i,sysdate,'mc'||i);
end loop;
return v_test;
end f_test_array;
/

select * from table(f_test_array(10));

select * from the(select f_test_array(10) from dual);

/*
2、table()结合PIPELINED函数:
*/

create or replace function f_test_pipe(n in number default null) return t_test_table PIPELINED
as
v_test t_test_table := t_test_table();
begin
for i in 1 .. nvl(n,100) loop
pipe row(t_test(i,sysdate,'mc'||i));
end loop;
return;
end f_test_pipe;
/

select * from table(f_test_pipe(20));

select * from the(select f_test_pipe(20) from dual);

/*
3、table()结合系统包:
*/

create table test (id varchar2(20));
insert into test values('1');
commit;
explain plan for select * from test;
select * from table(dbms_xplan.display);


关于错误:ORA-22905: cannot access rows from a non-nested table item 的解决方案,不知各位大侠有没有更好的解决方案?请指教。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐