如何解释数据库图表?
我是数据库新手,我看到一些数据库图表,其中
- 有has[1:0-N]、
- is[1:0-N]、
- has from[1:1]、
- has to[1:1]
链接旁边标记 “盒子”之间。我在哪里可以找到有关上述各项含义的更多信息?
对于具有上述“标签”的数据库图,该图被称为什么?
I am new to database and I saw some database diagram with
- has[1:0-N],
- is[1:0-N],
- has from[1:1],
- has to[1:1]
labeled next to the linkages between the "boxes". Where can I find out more on what each of the above means?
For a database diagram to have the above "labels", what is the diagram called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能正在谈论实体关系模型。
http://en.wikipedia.org/wiki/Entity-relationship_model 您正在谈论的关系,这些关系应该代表不同表之间的相互关系,例如:
表 A 是表 B
表 A 有 N 个对表 B 的引用
表 A 有一个到/来自表 B 的外键
You might be talking about an Entity Relationship Model.
http://en.wikipedia.org/wiki/Entity-relationship_model
As far as the relationships you're talking about, those should be representing how different tables relate to each other, such as:
Table A is Table B
Table A has N references to Table B
Table A has a foreign key to/from Table B
这些基本上是 RDBMS(数据库)中的关系,1:0-N 表示一个表的属性值的 1 个值与另一个表属性值的多个值有很多关系。
These are basically the relationships in RDBMS(databases) and 1:0-N means 1 value of an attribute of one table has many relations with many values of another table attribute's value.
这些标签指的是 基数,它描述了一个表中另一个表中的行数另一个表中的行与之相关。
These labels refer to Cardinality, which describes the number of rows in one table that another row in another table is related to.