oracle集合没有足够的值
我执行了以下操作:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当使用批量收集填充 SQL 类型时,我们需要包含行(而不是表)类型。
When populating SQL types with bulk collect we need to include the row (not the table) type.
没有 FROM 子句。
尝试
FROM DUAL
no FROM clause.
try
FROM DUAL