MySQL - 也使用外键作为主键

发布于 2024-12-28 10:14:42 字数 211 浏览 2 评论 0原文

我的表 1 带有主键 user_id ,表 2 中的 user_id 是外键。

表 2 中每个 user_id 只能存在 1 条记录,没有它就不可能存在任何记录。

问题:表 2 中的 user_id 可以同时作为外键和主键吗?如果可以,这是一个好主意吗?优点/缺点是什么?

I have table 1 with a primary key user_id and table 2 where user_id is a foreign key.

Only 1 record per user_id can exist in table 2, and no record can exist without it.

QUESTION: Can user_id in table 2 be both foreign and primary key at the same time, and if yes, is it a good idea, what are pros/cons?

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

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

发布评论

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

评论(1

卷耳 2025-01-04 10:14:42

是的,您可以这样做(从数据库设计的角度来看,您应该这样做)。

但是,请考虑如果 user_id 是表 2 上的主键,这意味着什么。您实际上是在说表 2 中的每一行对应于一个用户,但您已经有一个表,其中每一行对应于用户:表 1。这就提出了一个问题:“那么为什么不将表 2 的所有数据放入表 1 中的可空列中呢?”。毕竟,拥有两个表意味着您必须进行两次查询才能获取此数据,而不是一次。

现在,在某些情况下,这种做法可能是个好主意:

  • 如果您有很多用户,但表 2 中只有几行,则表 2 上的查询可能很少执行;同时,您获得表 1 的存储空间和修改速度,
  • 将来表 2 的主键可能会更改,而外键仍然保留;如果您将所有数据放入表 1 中,此修改很可能会破坏您的数据库模型。

这可能是一个好主意,但这取决于您的应用程序的具体情况。

Yes, you can do this (and you should, from a database design point of view).

However, consider what it means if user_id is the primary key on table 2. You are in effect saying that each row in table 2 corresponds to a user, but you already have a table where each row corresponds to a user: table 1. This raises the question "why then don't you put all data of table 2 into nullable columns in table 1?". After all, having two tables means you will have to make two queries to get this data instead of one.

Now there are some scenarios where this practice might be a good idea:

  • if you have lots of users but only a few rows in table 2, perhaps the query on table 2 will be only performed rarely; at the same time, you gain storage space and modification speed on table 1
  • it might be possible in the future for the primary key of table 2 to change, while the foreign key remains; if you put all the data in table 1, this modification would most likely break your database model

It can be a good idea, but it depends on the particulars of your application.

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