为什么创建的这从表只能插入一条数据?插入第二条时就报错了怎么回事?

WBOY
Release: 2016-06-06 20:08:29
Original
1416 people have browsed it

<code>create table qq(id int primary key not null auto_increment,num varchar(15) not null);</code>
Copy after login
Copy after login

然后我插入了一条数据:
insert into qq(id,num) values (1,5555);

我又建了一个表 设置了一个外键指向qq表的id

<code>create table sqq(id int primary key not null auto_increment,num varchar(15) not null,comment varchar(140) not null,constraint foreign key(id) references qq(id));</code>
Copy after login
Copy after login

我插入一条数据

<code> insert into sqq(id,num,comment) values (1,5555,'ssss');</code>
Copy after login
Copy after login

但是我再次插入第二条数据时就报错了

<code>insert into sqq(id,num,comment) values (2,5555,'vvvv');</code>
Copy after login
Copy after login

ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (t1.sqq, CONSTRAINT sqq_ibfk_1 FOREIGN KEY (id) REFERENCES qq (id))

回复内容:

<code>create table qq(id int primary key not null auto_increment,num varchar(15) not null);</code>
Copy after login
Copy after login

然后我插入了一条数据:
insert into qq(id,num) values (1,5555);

我又建了一个表 设置了一个外键指向qq表的id

<code>create table sqq(id int primary key not null auto_increment,num varchar(15) not null,comment varchar(140) not null,constraint foreign key(id) references qq(id));</code>
Copy after login
Copy after login

我插入一条数据

<code> insert into sqq(id,num,comment) values (1,5555,'ssss');</code>
Copy after login
Copy after login

但是我再次插入第二条数据时就报错了

<code>insert into sqq(id,num,comment) values (2,5555,'vvvv');</code>
Copy after login
Copy after login

ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (t1.sqq, CONSTRAINT sqq_ibfk_1 FOREIGN KEY (id) REFERENCES qq (id))

<code>先
insert into qq(id,num) values (2,5555);
然后
insert into sqq(id,num,comment) values (2,5555,'vvvv');
</code>
Copy after login

至于为什么?提示里已经写的很清楚了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template