我在教程中的练习任务中使用MySQL,但是我在创建一个错误“错误约束”错误的表时遇到了问题。
请看看并建议我如何解决它。谢谢!
*课程设置是在特定学期提供的课程 *学生将报名参加课程,而不是课程 *讲师被分配到课程,而不是课程
CREATE TABLE `students` (
`student_id` char(8) NOT NULL,
`max_load` tinyint(4) NOT NULL,
PRIMARY KEY (`student_id`)
)
CREATE TABLE `courses` (
`course_code` char(8) NOT NULL,
`course_title` varchar(100) NOT NULL,
PRIMARY KEY (`course_code`)
)
CREATE TABLE `lecturers` (
`lecturer_id` char(8) NOT NULL,
`lecturer_name` varchar(50) NOT NULL,
PRIMARY KEY (`lecturer_id`)
)
CREATE TABLE `course_offerings` (
`course_code` char(8) NOT NULL,
`semester` tinyint(4) NOT NULL,
`year` year(4) NOT NULL,
`lecturer_id` char(8) NOT NULL,
PRIMARY KEY (`course_code`,`semester`,`year`),
FOREIGN KEY (`course_code`) REFERENCES `courses` (`course_code`),
FOREIGN KEY (`lecturer_id`) REFERENCES `lecturers` (`lecturer_id`)
)
CREATE TABLE `enrolment` (
`student_id` char(8) NOT NULL,
`course_code` char(8) NOT NULL,
`semester` tinyint(4) NOT NULL,
`year` year(4) NOT NULL,
PRIMARY KEY (`student_id`,`course_code`,`semester`,`year`),
FOREIGN KEY (`student_id`) REFERENCES students(`student_id`),
FOREIGN KEY (`course_code`) REFERENCES course_offerings(`course_code`),
FOREIGN KEY (`semester`) REFERENCES course_offerings(`semester`),
FOREIGN KEY (`year`) REFERENCES course_offerings(`year`)
)
答案 0 :(得分:1)
您是否尝试在enrolment
上使用复合外键?如果是这样,以下可能是您想要的。
CREATE TABLE `enrolment` (
`student_id` char(8) NOT NULL,
`course_code` char(8) NOT NULL,
`semester` tinyint(4) NOT NULL,
`year` year(4) NOT NULL,
PRIMARY KEY (`student_id`,`course_code`,`semester`,`year`),
FOREIGN KEY (`student_id`)
REFERENCES students(`student_id`),
FOREIGN KEY (`course_code`, `semester`, `year`)
REFERENCES course_offerings(`course_code`, `semester`, `year`))
我建议你在course_offerings中创建一个id
列,并将其作为主键,保持course_code,学期和年份组合UNIQUE键。使用此id
作为外键,因此您需要1列而不是3列。
答案 1 :(得分:0)
您需要检查源表和目标表之间的列类型
semester
tinyint NOT NULL,
year
年NOT NULL,
VS
semester
tinyint(4)NOT NULL,
year
年(4)NOT NULL,
答案 2 :(得分:0)
答案 3 :(得分:-1)
怎么样?
ALTER TABLE `kategori_transportasi` ADD FOREIGN KEY ( `no_ktp_pemesan` ) REFERENCES `tbl_daftar_customer` (
`no_ktp_pemesan`);
MySQL说:文档
#1005 - Can't create table `kuda_express`.`#sql-d64_216` (errno: 150 "Foreign key constraint is incorrectly formed") (Details…)