5

我有一个表捐助者主:

create table donor_master  
(  
donor_id number(10) primary key not null,  
dob date not null,  
age number(3) not null,  
gender char(1) not null,  
blood_group char(3),  
contact_no number(10),  
address varchar(50) not null,  
city varchar(10) not null,  
pin number(10) not null,  
state varchar(10) not null,  
branch_registration_id number(5) references branch_master(branch_id)  
);  

当我尝试在程序 insert_donor_master 中插入表时,编译时出现“值不足”错误。

这是程序:

create or replace procedure insert_donor_master(  
vdob donor_master.dob%type,  
vage donor_master.age%type,  
vgender donor_master.gender%type,  
vblood_group donor_master.blood_group%type,  
vcontact_no donor_master.contact_no%type,  
vaddress donor_master.address%type,  
vcity donor_master.city%type,  
vpin donor_master.pin%type,  
vstate donor_master.state%type,  
vbranch_registration_id donor_master.branch_registration_id%type  
)  
is  

begin  

    insert into donor_master values (sq_donor_master.nextval, vdob, vage, vgender, vblood_group, vcontact_no, vaddress, vcity, vpin, vstate, vbranch_registration_id);  
    commit;  

end;

问题是什么?

谢谢。

4

1 回答 1

4

当我们指定一个 INSERT 语句时,Oracle 会抛出 ORA-00947,该语句没有为表中的每一列提供值。

现在,您发布的 CREATE TABLE 语句显示了一个包含 11 列的表。您发布的存储过程代码在 VALUES (...) 子句中显示了一个包含十一个值的插入语句。

所以,解释是:

  1. 您有配置管理问题,并且您正在运行错误版本的存储过程或错误版本的表
  2. 您有配置管理问题,并且表的实际结构不是您认为的那样(与您的 CREATE TABLE 脚本不匹配)
  3. 你并没有真正得到 ORA-00947 错误

请注意,如果您不想填充每一行,则可以在 VALUES 子句之前指定相关列的投影。例如,如果您只想填充必填列,您可以编写以下代码:

insert into  donor_master 
    (donor_id, dob, age, gender, address, city, pin, state )
   values (sq_donor_master.nextval, vdob, vage, vgender, vaddress, vcity, vpin, vstate) 

重要的是值的数量与列的数量相匹配。

INSERT 语句的完整语法在文档中。 在此处输入链接描述了解更多信息。

于 2012-10-19T09:57:58.180 回答