mysql 一对多关系表的实现
经验: 在一对多的关系中 不管是哪一张表用了外键,那么这张表对应的就是‘多’。 另外一张表就是‘一’。
比如 一个老师可以带多个学生,而一个学生只能跟一个老师。老师和学生是 1:n的关系
所以在设计时,table student 中应该有外键 s_foreign int foreign key references teacher(t_id)
在多对多的关系中,比如一个老师可以给多个学生上课,一个学生也可以上多个老师的课程,老师和学生是多对多的关系。
所以在设计是,最好采用才table teacher 和table student之外建立第三张表 table relation
在这张表中应该有两个外键,r_t_id int references teacher(t_id),
r_s_id int references student(s_id)