这是我写的存储过程.在这个过程中,“p_subjectid”是从前端传递的数字数组.
原文链接:https://www.f2er.com/oracle/205014.htmlPROCEDURE 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;
任何人都可以告诉我这是什么错误.我的程序有什么问题.