Entity-Relationship Model(ER Diagram)实体关系模型的建立以及Key(键)的分类

首先了解这样几个名词:

Entity 我们要依此建模的实体,在E-R图中用矩形表示(例子中的student、course)
Attributes 实体的属性,  在E-R图中用椭圆表示,与相应的entity连接
R elationship 实体与实体之间的关系,在E-R图中用菱形表示,连接相应的实体(数量没有限制,依情况而定)
Primary Key 在E-R图中,属于主键的属性要加下划线

Keys(键的几种分类)

  • A superkey is any set of attributes whose values uniquely identify each entity instance in an entity set.
  • A key is a minimal set of attributes whose values uniquely identify each entity instance in an entity set.
  • Where there is more than one such set, each forms a candidate key.
  • Any key with more than one attribute is a composite key.
  • One of the candidate keys is selected as the primary key

接下来以学生选课作为例子,给出相应的E-R 图。

                        Entity-Relationship Model(ER Diagram)实体关系模型的建立以及Key(键)的分类_第1张图片

由图可知:
两个entity分别是 StudentCourse ,他们之间的关系是 Takes

Student的属性有 UUNAgeemailName,主键为 UUN
Course的属性有 CodeTitleYear,主键由 CodeYear组成

你可能感兴趣的:(Data,and,Analysis)