1

我在 mysql 中创建了四个表。但它在创建第四个时显示错误。

错误 1005 (HY000): 无法创建表 'db.grades' (errno: 150)

我检查了外键的名称和类型是否正确。有什么建议么?谢谢。

CREATE TABLE students
(

id int unsigned not null,
first_name VARCHAR(50),
last_name VARCHAR(50),
email_address VARCHAR(50),
primary key (id)

);



-------
CREATE TABLE departments 
(
school_code enum('L', 'B', 'A', 'F', 'E', 'T', 'I', 'W', 'S', 'U', 'M' ),
dept_id int unsigned,
abbreviation VARCHAR(9),
dept_name VARCHAR(200),
PRIMARY KEY (school_code,dept_id)
);


----

create table courses(
school_code enum('L', 'B', 'A', 'F', 'E', 'T', 'I', 'W', 'S', 'U', 'M' ),
dept_id int unsigned,
course_code char(5),
name varchar(150),
primary key (school_code,course_code,dept_id)
);


-----

create table grades(
pk_grade_ID int unsigned auto_increment,
student_id int unsigned not null,
grade decimal,
school_code enum('L', 'B', 'A', 'F', 'E', 'T', 'I', 'W', 'S', 'U', 'M' ),
dept_id int unsigned,
course_code char(5), 
name varchar(150),
primary key (pk_grade_ID),
foreign key (student_id) references students(id),
foreign key (school_code,course_code,name) references courses (school_code,course_code,name)
);

----
4

1 回答 1

1

您确定您是 Grades 表中的最后一个外键不应该引用 Courses 表中的主键(包括dept_id代替name):

foreign key (school_code,course_code,dept_id)
     references courses (school_code,course_code,dept_id)

这有效——http: //sqlfiddle.com/#!2/ 451d1

顺便说一句——如果可能,请考虑完全删除枚举列。而是创建一个查找表并将其用作外键。

于 2013-06-27T02:24:20.977 回答