oracle集合没有足够的值

发布于 2024-09-05 20:46:16 字数 524 浏览 6 评论 0原文

我执行了以下操作:

create or replace type my_row as object 
    (
     lname varchar2(30),
     fname varchar2(30),
     MI char(1),
     hohSSN char (9),
     hohname VARCHAR2(63),
     hohDob char(10),
     dob DATE
     ); 

create or replace type eiv.my_rec as table of eiv.my_row; 

但随后执行如下查询:

my_records my_rec

select '', '', '', '', '', '', sysdate bulk collect into my_records from dual;

给出错误 ORA-00947: 没有足够的值

我在这里做错了什么?

I did following:

create or replace type my_row as object 
    (
     lname varchar2(30),
     fname varchar2(30),
     MI char(1),
     hohSSN char (9),
     hohname VARCHAR2(63),
     hohDob char(10),
     dob DATE
     ); 

create or replace type eiv.my_rec as table of eiv.my_row; 

but then doing query like:

my_records my_rec

select '', '', '', '', '', '', sysdate bulk collect into my_records from dual;

gives error ORA-00947: not enough values

what can i be doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

嘿咻 2024-09-12 20:46:16

当使用批量收集填充 SQL 类型时,我们需要包含行(而不是表)类型。

select my_row ('', '', '', '', '', '', sysdate )
bulk collect into my_records 
from dual; 

When populating SQL types with bulk collect we need to include the row (not the table) type.

select my_row ('', '', '', '', '', '', sysdate )
bulk collect into my_records 
from dual; 
不喜欢何必死缠烂打 2024-09-12 20:46:16

没有 FROM 子句。

尝试FROM DUAL

no FROM clause.

try FROM DUAL

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