为什么我不能像这样使用 Oracle 用户定义类型?

发布于 2024-09-29 06:41:31 字数 382 浏览 4 评论 0原文

在 Oracle 包中,我

type setTable is table of my_sets.pkey%type;

在包声明(非主体部分)中定义了一个类型。引用的 pkey 列是一个 number(38)。然后在包主体的函数中,我有

...
with d as (select column_value from table(sets)),
...

其中 setssettable 类型的函数的参数。此行无法编译,并出现错误“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江城子 2024-10-06 06:41:31

select 语句是 SQL 而不是 PL/SQL,并且 SQL 引擎只能使用服务器上定义的类型,如下所示:

create type setObj is object (<attributes>);
create type setTable is table of setObj;

The select statement is SQL not PL/SQL, and the SQL engine can only work with types defined on the server like this:

create type setObj is object (<attributes>);
create type setTable is table of setObj;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文