MySQL - 也使用外键作为主键
我的表 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以这样做(从数据库设计的角度来看,您应该这样做)。
但是,请考虑如果
user_id
是表 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:
It can be a good idea, but it depends on the particulars of your application.