如何描述关联实体关系?
因此,在一对多关系中,它可以是这样的:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的示例中,您可能有一个导演表和一个以导演作为外键的电影表。
您还可以在电影列中有一个包含名称等的国家/地区表和一个国家/地区 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.