添加多列和外键

nmpmafwu  于 2021-06-21  发布在  Mysql
关注(0)|答案(1)|浏览(287)

我是结构化查询语言的初学者。我想添加具有不同外键的多列。例如:

drop schema humman;

create schema humman;

CREATE TABLE humman.father (
id int not null auto_increment,
firstname varchar(200) not null,
primary key(id)
);

create table humman.mather(
id int not null auto_increment,
FirstName varchar(200),
primary key(id)
);

CREATE TABLE humman.child (
id int not null auto_increment,
firstname varchar(200) not null,
primary key(id)
);

use `humman`;

alter table humman.child 
ADD `parentId` int ,
ADD `motherId` int,
ADD  foreign key (`parentId`) references father(`id`),
ADD foreign key (`motherId`) references mother(`id`);

错误代码:1215无法添加外键约束

xsuvu9jc

xsuvu9jc1#

你的代码很好,除了拼写错误,你在第二个表定义中将“mother”拼写为“mather”;

create table humman.mather(
id int not null auto_increment,
FirstName varchar(200),
primary key(id)
);

纠正这一点,它应该工作。

相关问题