Identifier
A candidate key that has
been selected as the unique,
identifying characteristic for
an entity type.
Candidate key
An attribute (or combination of
attributes) that uniquely identifies
each instance of an entity type.
Attribute
A named property or
characteristic of an entity that
is of interest to the organization.
Chapter 7 Structuring System Requirements: Conceptual Data Modeling 199
In this same situation, is an expense report an entity type? Because an expense
report is computed from expense transactions and account balances, it is a data
flow, not an entity type. Even though multiple instances of expense reports will
occur over time, the report contents are already represented by the ACCOUNT
and EXPENSE entity types.
Often when we refer to entity types in subsequent sections, we simply say
entity. This shorthand reference is common among data modelers. We will
clarify that we mean an entity by using the term entity instance.
Attributes
Each entity type has a set of attributes associated with it. An attribute is a prop-
erty or characteristic of an entity that is of interest to the organization (relation-
ships may also have attributes, as we see in the section on relationships). Asking
about attributes is the third question noted in Table 7-1 (see page 196).
Following are some typical entity types and associated attributes:
STUDENT: Student_ID, Student_Name, Address, Phone_Number, Major
AUTOMOBILE: Vehicle_ID, Color, Weight, Horsepower
EMPLOYEE: Employee_ID, Employee_Name, Address, Skill
We use nouns with an initial capital letter followed by lowercase letters in
naming an attribute. In E-R diagrams, we represent an attribute by placing its
name inside the rectangle that represents the associated entity. In many E-R
drawing tools, such as Microsoft Visio, attributes are listed within the entity
rectangle under the entity name.
Candidate Keys and Identifiers
Every entity type must have an attribute or set of attributes that distinguishes
one instance from other instances of the same type. A candidate key is an at-
tribute (or combination of attributes) that uniquely identifies each instance of
an entity type. A candidate key for a STUDENT entity type might be Student_ID.
Sometimes more than one attribute is required to identify a unique entity. For
example, consider the entity type GAME for a basketball league. The attribute
Team_Name is clearly not a candidate key, because each team plays several
games. If each team plays exactly one home game against every other team, then
the combination of the attributes Home_Team and Visiting_Team is a candidate
key for GAME.
Some entities may have more than one candidate key. One candidate key for
EMPLOYEE is Employee_ID; a second is the combination of Employee_Name
and Address (assuming that no two employees with the same name live at the
same address). If more than one candidate key is involved, the designer must
choose one of the candidate keys as the identifier. An identifier is a candidate key
that has been selected to be used as the unique characteristic for an entity type.
Identifiers should be selected carefully because they are critical for the
integrity of data. You should apply the following identifier selection rules:
1. Choose a candidate key that will not change its value over the life
of each instance of the entity type. For example, the combination of
Employee_Name and Address would probably be a poor choice as a
primary key for EMPLOYEE because the values of Employee_Name and
Address could easily change during an employee’s term of employment.
2. Choose a candidate key such that for each instance of the entity, the
attribute is guaranteed to have valid values and not be null. To ensure
valid values, you may have to include special controls in data entry
and maintenance routines to eliminate the possibility of errors. If the