为了账号安全,请及时绑定邮箱和手机立即绑定

如何在设计表格时实现一对一、一对多和多对多的关系?

如何在设计表格时实现一对一、一对多和多对多的关系?

幕布斯7119047 2019-07-05 18:38:00
如何在设计表格时实现一对一、一对多和多对多的关系?有人能解释如何在设计表格时实现一对一、一对多和多对多的关系吗?
查看完整描述

3 回答

?
慕雪6442864

TA贡献1812条经验 获得超5个赞

一对一:使用引用表的外键:

student: student_id, first_name, last_name, address_id
address: address_id, address, city, zipcode, student_id # you can have a
                                                        # "link back" if you need

还必须对外键列(addess.student_id)以防止子表中的多行(address)与引用表中的同一行相关(student).

一对多*在连接到“一方”的关系的多个方面使用外键:

teachers: teacher_id, first_name, last_name # the "one" side
classes:  class_id, class_name, teacher_id  # the "many" side

多对多使用连接表():

student: student_id, first_name, last_name
classes: class_id, name, teacher_id
student_classes: class_id, student_id     # the junction table

示例查询:

 -- Getting all students for a class:

    SELECT s.student_id, last_name      FROM student_classes sc 
INNER JOIN students s ON s.student_id = sc.student_id     WHERE sc.class_id = X -- Getting all classes for a student: 

    SELECT c.class_id, name      FROM student_classes sc 
INNER JOIN classes c ON c.class_id = sc.class_id     WHERE sc.student_id = Y


查看完整回答
反对 回复 2019-07-05
  • 3 回答
  • 0 关注
  • 1747 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信