在写存储过程的时候
假如
function a is return Type
Type 是某种类型
通过
open cursor for select * from table (function a) 就会报 ora-22905的错
分析原因
[quote]ORA-22905: cannot access rows from a non-nested table item
Cause: attempt to access rows of an item whose type is not known at parse time or that is not of a nested table type
Action: use CAST to cast the item to a nested table type[/quote]
因此 你需要 cast一下,我试过 在 10g里面不需要,但是 9i就必须转换哈
open cursor for select * from table ( cast(function a as type)) 这样就ok
假如
function a is return Type
Type 是某种类型
通过
open cursor for select * from table (function a) 就会报 ora-22905的错
分析原因
[quote]ORA-22905: cannot access rows from a non-nested table item
Cause: attempt to access rows of an item whose type is not known at parse time or that is not of a nested table type
Action: use CAST to cast the item to a nested table type[/quote]
因此 你需要 cast一下,我试过 在 10g里面不需要,但是 9i就必须转换哈
open cursor for select * from table ( cast(function a as type)) 这样就ok
本文详细分析了在使用Oracle存储过程时遇到ORA-22905错误的原因,并提供了如何通过使用CAST函数解决该问题的方法。适用于Oracle 9i及更高版本。

740

被折叠的 条评论
为什么被折叠?



