有 2 个密钥来识别有效信息是不是很糟糕?

发布于 2024-10-20 17:49:57 字数 615 浏览 2 评论 0原文

使用 2 个密钥来识别有效信息是不是一个坏主意?

公司信息表为洗车表和汽车服务表提供服务

假设我们有一个表,其中包含类别

=== 类别表 ===

id
category_name
active
position
path

然后我有一个为两个不同表提供服务的表。

====公司信息====

id
parent_id
category_id
company_name
company_adress
bank_name

两个不同类别的桌子

====洗车桌=======

id ( this will be the parent id in company information )
category_id
...other_fields

汽车服务桌===

id ( this will be the parent id in company information )
category_id
...other_fields

Is it a bad ideea to have 2 keys for identifying a valid information ?

Company information table serves the car wash table and also the car service table

Let's say We have a table that has the categories

=== Category Table ===

id
category_name
active
position
path

Then i have the table that serves the two different tables.

==== Company Information ====

id
parent_id
category_id
company_name
company_adress
bank_name

The two tables that are from different categories

==== Car wash table ===

id ( this will be the parent id in company information )
category_id
...other_fields

=== Car service table ===

id ( this will be the parent id in company information )
category_id
...other_fields

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

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

发布评论

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

评论(1

秋凉 2024-10-27 17:49:57

在一个表中使用相同的键被其他表中的多个外键引用并没有什么根本性的错误。这是很正常的。

There is nothing fundamentally wrong with having the same same key in one table referenced by multiple foreign keys in other tables. It is quite normal.

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