###引用完整性学生表 id 名字 性别 成绩表 id 学生ID 成绩 create table stu7( id int primary key, name varchar(50) )create table score( id
###引用完整性
学生表
id
名字
性别
成绩表
id
学生ID
成绩
create table stu7(
id int primary key,
name varchar(50)
)
create table score(
id int primary key,
sid int,
score double,
constraint aa foreign key (sid) references stu7(id)
)
insert into stu7(id,name) values(1,"zsf");
insert into score(id,sid,score) values(1,1,90);
ERROR 1452 (23000): Cannot add or update a child
row: a foreign key constraint fails (`db_0402`.`score`,
CONSTRAINT `aa` FOREIGN KEY (`sid`) REFERENCES `stu7` (`id`))
Mysql引用完整性
--结束END--
本文标题: mysql引用完整性
本文链接: https://lsjlt.com/news/8165.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0