数据库设计模型

发布于 2025-01-04 02:05:17 字数 122 浏览 1 评论 0原文

假设我们有 3 张表:Cars、People、Company。我们希望汽车的所有者是一个人(并且是谁)或一个公司(并且是谁)。 Cars表的基本结构是: Car_id, Car_model, Owner_id 。这是最好的方法吗?

lets say we have 3 tables: Cars , People , Companies. we want the owner of the car to be a people (and who is) or a company (and which is). The basic structure of the Cars table is: Car_id, Car_model, Owner_id . which is the best way to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城空念 2025-01-11 02:05:17

阅读您的问题,我看到两种方法:

  • 第一种是继承:您是否有 car 表,并且您是否有 owner所有者可以是具有特定领域和关系的公司

它们是使用标准 SQL 实现继承的几种策略,以及也特定于某些 dbms 供应商。数据库分析师应该为每个讨论领域和数据库品牌设计最佳解决方案。

  • 第二种方法是在 car 表中定义两个外键。

像这样:

car_company_owner  int NULL references companies
car_person_owner   int NULL references people

然后在数据库中创建一条规则来强制您的预期行为。例如,您可以与触发器保持一致。

Reading your question I see two approaches:

  • First one is inheritance: Do you have a car table and also do you have a owner. The owner may be a person or a company both with specific fields and relations.

They are several strategies to implementing inheritance with standard SQL and also specific for some dbms vendors. Database Analyst should design best solution for each domain of discourse and database brand.

  • Second approach is to define both foreign keys in your car table.

Like this:

car_company_owner  int NULL references companies
car_person_owner   int NULL references people

then create a rule in database to force your expected behavior. For example you can keep consistence with triggers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文