如何描述关联实体关系?

发布于 2025-01-11 05:47:32 字数 358 浏览 1 评论 0原文

因此,在一对多关系中,它可以是这样的:

Director (1..1)--R3--(0..*) Movie R11:一个导演可以导演很多部电影;一部电影只有一个导演。

但是,如果我们有多对多关系并且使用关联实体:

Movie (1..1)--R3--(0..)MovieCountry(0..)--R4< a href="https://i.sstatic.net/xSB1n.jpg" rel="nofollow noreferrer">I--(1..1)Country

如果我输入: R1:一部电影可以在许多国家拍摄。 R2:一个国家可以是很多电影的拍摄地。

或者我应该以某种方式添加关联实体?

So in a one to many relation it can be like:

Director (1..1)--R3--(0..*) Movie
R11: A director can direct many movies; a movie only has one director.

But if we have a many to many relation and we use an Associative entity:

Movie (1..1)--R3--(0..)MovieCountry(0..)--R4I--(1..1)Country

It is okay if I put:
R1:A movie can be film in many countries.
R2:A country can be a location for many movies.

or should I add in some way the Associative entity?

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

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

发布评论

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

评论(1

掐死时间 2025-01-18 05:47:32

在您的示例中,您可能有一个导演表和一个以导演作为外键的电影表。
您还可以在电影列中有一个包含名称等的国家/地区表和一个国家/地区 ID,但如果您只需要国家/地区的名称,它可能只是电影表中的一列。
当避免出现大量重复值时,拥有一个单独的表是很有价值的。您可以将导演信息:出生日期、地址、国籍等放入电影表中,但会有很多重复。

In your example you might have at table of directors and a table of movies with director as a foreign key.
You could also have a countries table with the name etc and an a county ID in the movies column but if you only want the name of the country it might just be one column in the movies table.
It is valuable to have a separate table when it avoids having lots of duplicate values. You could put the directors info: dob, adresse, nationalité etc in the movies table, but there would be a lot of duplication.

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