gpt4 book ai didi

mysql - 如何在数据库中保存婚姻关系

转载 作者:可可西里 更新时间:2023-11-01 06:45:22 25 4
gpt4 key购买 nike

我必须将这些信息保存在数据库中

人 -> 嫁给 -> 人

我应该在哪里保存这些信息?我应该在这里应用什么正确的设计模式?

谢谢!

最佳答案

如果只能和一个人结婚:1:1

-------------
- Person -
-------------
id (key)
maried_to_id (foreign key)

如果您可以与多个人结婚或想跟踪以前的婚姻,n:n

-------------
- Person -
-------------
person_id (key)

-------------
- Mariage -
-------------
first_person_id (foreign key)
second_person_id (foreign key)
start_date
end_date

(也是 first_person_id + second_person_id + date 形成一个唯一的婚姻 key 。你可以省略日期,但再婚将不会被跟踪)

关于mysql - 如何在数据库中保存婚姻关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4378591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com