仅由外键组成的数据库表的术语是什么?
这是此类表的示例:
item_tag_relationships(item_id, tag_id);
Here's an example of such a table:
item_tag_relationships(item_id, tag_id);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果我感觉很广泛,我通常将其称为连接表或多对多连接表。
I usually call it a join table, or a many-to-many join table if I'm feeling expansive.
我见过它被称为一些东西:
I've seen it called a few things:
联结表。
http://en.wikipedia.org/wiki/Junction_table
Junction table.
http://en.wikipedia.org/wiki/Junction_table
从模式设计的角度来看......但它不一定只包含外键,而是通常作为彼此链接多对多关系的缓冲区。
In a schema design point of view... But it doesn't necessarily only contain foreign keys but usually as a buffer to link many to many relationships with each other.
我认为它的著名名字是连接表
I think its famous name is junction table