oracle10g – Oracle错误ORA-22905:无法访问非嵌套表项的行

前端之家收集整理的这篇文章主要介绍了oracle10g – Oracle错误ORA-22905:无法访问非嵌套表项的行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我写的存储过程.在这个过程中,“p_subjectid”是从前端传递的数字数组.
PROCEDURE getsubjects(p_subjectid subjectid_tab,p_subjects out refCursor) 
       as

       BEGIN

            open p_subjects for select * from empsubject where subject_id in
            (select column_value from table(p_subjectid));
            --select * from table(cast(p_subjectid as packg.subjectid_tab))
      END getsubjects;

这是我得到的错误.

Oracle error ORA-22905: cannot access rows from a non-nested table item OR

正如我在不同的帖子中看到的,我尝试在下面的评论中给出的表函数内部“cast(p_subjectid as packg.subjectid_tab)”.但是我得到另一个错误:ORA-00902:无效的数据类型.

这就是“subjectid_tab”的定义.

type subjectid_tab is table of number index by binary_integer;

任何人都可以告诉我这是什么错误.我的程序有什么问题.

您必须在ammoQ建议的“数据库级别”上声明类型:
CREATE TYPE subjectid_tab AS TABLE OF NUMBER INDEX BY binary_integer;

而不是在PL / sql中声明类型.如果在PL / sql块中声明类型,它将不可用于sql“引擎”.

原文链接:https://www.f2er.com/oracle/205014.html

猜你在找的Oracle相关文章