所以,这是我的输入,我正在设计一个医院数据库,我正在创建一个表,它将保存“患者”表中的患者和“房间”表中的房间之间的关系(聪明,我知道) .
这是用于声明两个表的语句:
create table patient_room
(
pr_id int NOT NULL PRIMARY KEY auto_increment,
patient_id int NOT NULL,
room_id int NOT NULL,
)ENGINE = InnoDB;
create table patients
(
patient_id int primary key not null auto_increment,
fname varchar(30),
lname varchar(30),
suffix enum('I','II','III','IV','JR','SR'),
sex enum('M','F','U','T'),
eye_color enum('BK','BR','BL','GY','GR','HZ','MN','DX','UN'),
hair_color enum('BK','BR','BN','RD','WH','SN','BD','UN'),
date_of_birth date not null,
height int unsigned not null,
weight int unsigned not null,
admitted datetime not null
) Engine = InnoDB;
这是我的替代声明
alter table patient_room add foreign key (patient_id) references patient(patient_id) on delete cascade on update cascade;
我得到回报:
ERROR 1005 (HY000): Can't create table 'Mthomas.#sql-3dac_5f1' (errno: 150)
我能够使用更改表来创建外键
alter table patient_room add foreign key (room_id) references room(room_id) on delete cascade on update cascade;
没有错误。我确实在另一个 patient_meds 表上已经有 patient_id 作为外键,我认为这可能是问题所在……如果是这样?我该如何减轻它?