为什么我不能像这样使用 Oracle 用户定义类型?
在 Oracle 包中,我
type setTable is table of my_sets.pkey%type;
在包声明(非主体部分)中定义了一个类型。引用的 pkey
列是一个 number(38)
。然后在包主体的函数中,我有
...
with d as (select column_value from table(sets)),
...
其中 sets
是 settable
类型的函数的参数。此行无法编译,并出现错误“ORA-22905:无法访问非嵌套表项中的行”。我可以做什么来解决这个问题?
In an Oracle package I have defined a type
type setTable is table of my_sets.pkey%type;
in the package declaration (the non-body part). The pkey
column referenced is a number(38)
. Then in a function in the package body I have
...
with d as (select column_value from table(sets)),
...
where sets
is a parameter to the function of type settable
. This line fails to compile with the error 'ORA-22905: cannot access rows from a non-nested table item'. What can I do to resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
select 语句是 SQL 而不是 PL/SQL,并且 SQL 引擎只能使用服务器上定义的类型,如下所示:
The select statement is SQL not PL/SQL, and the SQL engine can only work with types defined on the server like this: