• No results found

Entity-Relationship Model

N/A
N/A
Protected

Academic year: 2021

Share "Entity-Relationship Model"

Copied!
19
0
0

Loading.... (view fulltext now)

Full text

(1)

Entity-Relationship Model

Kuang-hua Chen

Department of Library and Information Science National Taiwan University

A Company Database

• Keeps track of a company’s employees,

departments and projects

• After the requirements collection and analysis

phase

– designers stated some description of the “miniworld” – the part of the company to be represented

(2)

Language & Information Processing System, LIS, NTU ER-3

Description of COMPANY Database

• The company is organized into departments.

• Each department has a unique name, a unique number, and a particular employee who manages the department. • We keep track of the start date when that employee

began managing the department.

• A department may have several locations.

• A department controls a number of projects, each of which has a unique name, a unique number, and a single location.

• We store each employee’s name, social security number, address, salary, sex and birthdate.

Description of COMPANY Database

(Continued)

• An employee is assigned to one department but may work on several projects, which are not necessarily controlled by the same department.

• We keep track of the number of hours per week that an employee works on each project.

• We also keep track of the direct supervisor of each employee.

• We want to keep track of the dependents of each employee for insurance purposes.

• We keep each dependent’s name, sex, birthdate, and relationship to the employee.

(3)

Language & Information Processing System, LIS, NTU ER-5

BirthDate Fname Minit Lname

Name SSN Bdate Sex Address Salary EMPLOYEE WORKS_FOR MANAGES StartDate NumberOfEmployees Number Name Locations DEPARTMENT CONTROLS PROJECT WORKS_ON Hours SUPERVISION DEPENDENTS_OF DEPENDENT Name Location Number

Name Sex Relationship

N 1 1 1 M N 1 N 1 N 1 N supervisor supervisee

ER schema diagram for the COMPANY database

Entities and Attributes

Entity, which is a “thing” in the real world with an independent existence.

– an object with a physical existence -- a particular person, car, house, or employee

– an object with a conceptual existence -- a company, a job, or a university course.

• Each entity has particular properties, called attributes

– employee entity may be described by the employee’s name, age, address...

(4)

Language & Information Processing System, LIS, NTU ER-7

Entities and Attributes

(Continued)

• A particular entity will have a valuefor each of its

attributes

• The attribute values that describe each entity become a major part of the data stored in the database.

Types of Attribute

Composite attributescan be divided into smaller subparts, which represent more basic attributes with independent meanings of their own.

• Attributes that are not divisible are called simpleor

atomic attributes.

• Most attributes have a single value for a particular entity;

such attributes are called single-valued.

• In some cases an attribute can have a set of values of the

(5)

Language & Information Processing System, LIS, NTU ER-9

Types of Attribute

(Continued)

• In some cases two (or more) attribute values are related -- for example, the Age attribute is hence called a derived attributeand is said to be derivable fromthe

BirthDate attribute, which is called a stored attribute.

• A nullvalue for an attribute:

– A particular entity may not have any applicable value for an attribute.

– Null can also be used if we do not know the value of an attribute for a particular entity.

Name=John Smith Address=2311 Kirby, Houston, Texas 77001 Name=Sunco Oil Headquarters=Houston President=John Smith Age=55 HomePhone=713-749-2630

.

e1 c1

.

(6)

Language & Information Processing System, LIS, NTU ER-11

Address

StreetAddress City State Zip

Number Street ApartmentNumber

A Hierarchy of Composite

Attributes

Entity Types

• An entity type defines a set of entities with the same

attributes.

– EMPLOYEE and COMPANY

• An entity type describes the schemaor intension

• The individual entities of a particular entity type are

grouped into a collectionor entity set(extension)

ENTITY TYPE

ATTRIBUTE

KEY ATTRIBUTE

MULTIVALUED ATTRIBUTE

(7)

Language & Information Processing System, LIS, NTU ER-13

.

.

.

(John Smith, 55, 80k) (Fred Brown, 40, 30k) (Judy Clark, 25, 20k)

. . .

e1 e2 e3

.

.

. . .

(Sunco Oil, Houston, John Smith)

(Fast Computer, Kallas, Bob King)

c1

c2 Name, Age, Salary

EMPLOYEE

Name, Headquarters, President COMPANY

ATTRIBUTES: ENTITY TYPE NAME:

ENTITY SET: (EXTENSION)

Two Entity Types and Member Entities

Key Attributes

• An entity type has an attribute whose values are distinct for each individual entity

• Its value can be used to identify each entity uniquely • e.g. Name attribute for COMPANY,

SocialSecurityNumber for PERSON

• Sometimes, several attributes together form a key • Key attribute must hold for all extensions

(8)

Language & Information Processing System, LIS, NTU ER-15 . . .

.

.

.

((ABC 123,TEXAS), TK629, Ford Mustang, convertible, 1989,{red, black})

((ABC 123,NEW YORK), WP9872, Nissan Sentra, 2-door, 1992, {blue})

((VSY 720, TEXAS), TD729, Chrysler LeBaron, 4-door, 1993, {white, blue})

car

1

car

2

car

3

Registration(RegistrationNumber, State), VehicleID, Make, Model, Year, {Color}

CAR

The CAR Entity Type

Value Sets

• A value set (or domain) specifies the set of values that may be assigned to that attribute

– the value set for Age attribute of EMPLOYEE is 16 to 70

• Value sets are not displayed in ER diagram

• The value set V for an attribute A of entity type

E can be defined as a function from E to the

(9)

Language & Information Processing System, LIS, NTU ER-17

Initial Conceptual Design for

COMPANY Database

• An entity type DEPARTMENT with attributes Name, Number, Locations, Manager, and ManagerStartDate. Locations is the only multivalued attribute.

• We can specify that each of Name and Number is a key attribute, because each was specified to be unique.

• An entity type DEPENDENT with attributes Employee, DependentName, Sex, BirthDate, and Relationship (for the employee).

Initial Conceptual Design for

COMPANY Database

(Continued)

• An entity type PROJECT with attributes Name, Number, Location, and ControllingDepartment. Each of Name and Number is a key attribute.

• An entity type EMPLOYEE with attributes Name, SSN, Sex, Address, Salary, BirthDate, Department, and Supervisor. Both Name and Address may be composite attributes

• We must go back to the users to see if any of them will refer to the individual components of Name --FirstName, MiddleInitial, LastName -- or of Address.

(10)

Language & Information Processing System, LIS, NTU ER-19

Preliminary Design of Entity Types

DEPARTMENT

Name, Number, {Locations}, Manager, ManagerStartDate

PROJECT

Name, Number, Location, ControllingDepartment

EMPLOYEE

Name(Fname, Minit, Lname), SSN, Sex, Address, Salary, BirthDate, Department, Supervisor, {WorksOn(Project, Hours)}

DEPENDENT

Employee, DependentName,Sex, BirthDate, Relationship

Relationships

Relationship Types and Relationship Instances:

• A relationship type R among n entity types E1,E2,...,En

defines a set of associations among entities from these types.

• R is a set of

relationship instances

r

i

, where

each r

i

associates n entities (e

1

,e

2

,...,e

n

), and each

entity e

j

in r

i

is a member of entity type E

j

, 1

≦j

≦n. RELATIONSHIP

TYPE

(11)

Language & Information Processing System, LIS, NTU ER-21

Instances of the WORKS_FOR

Relationship

ß „ „ „ „ „ „ „ ß ß ß ß ß ß ß ... ... ... ß e1 e2 e3 e4 e5 e6 e7 r1 r2 r3 r4 r5 r6 r7 d1 d2 d3

EMPLOYEE WORKS_FOR DEPARTMENT

ß

Degree of a Relationship Type

• Each of the entity types E

1

,E

2

,...E

n

is said to

participate

in the relationship type R, and

similarly each of the individual entities e

1

,

e

2

,...,e

n

is said to participate in the relationship

instance r

i

=(e

1

, e

2

,..., e

n

)

• The

degree

of a relationship type is the number

of participating entity types.

• A relationship type of degree two is called

(12)

Language & Information Processing System, LIS, NTU ER-23

The Ternary Relationship SUPPLY

ß „ „ „ „ „ „ „ ß

...

...

...

r1 r2 r3 r4 r5 r6 r7 ß ß ß ... ... s1 s2 p1 p2 p3 j1 j2 j3 SUPPLIER PART SUPPLY PROJECT

Role Names and Recursive

Relationships

• The role name signifies the role that a

participating entity plays in each relationship

instance

• When all entity types are distinct, role name is

not needed

• Sometimes, the same entity type participates

more than once in a relationship type is different

roles

(13)

Language & Information Processing System, LIS, NTU ER-25

Recursive Relationship SUPERVISION

EMPLOYEE SUPERVISION

.

.

.

.

.

.

.

„ „ „ „ „ „ e e e e e e e 1 2 3 4 5 6 7 r r r r r r6 1 2 3 4 5 2 2 2 2 1 1 1 1

...

...

supervisor (1) and supervisee (2)

1

2

1

2

Constraints on Relationship Types

• Cardinality ratio

– specifies the number of relationship instances that an entity can participate in

• Participation constraint

– specifies whether the existence of an entity depends on its being related to another entity via the

relationship type

• Structural constraints

(14)

Language & Information Processing System, LIS, NTU ER-27

Cardinality Ratio

• DEPARTMENT:EMPLOYEE 1:N

• EMPLOYEE:PROJECT M:N (WORK_ON)

• EMPLOYEE:DEPARTMENT 1:1 (MANAGE)

EMPLOYEE

.

.

.

.

.

.

.

e e e e e e e 1 2 3 4 5 6 7 DEPARTMENT

.

.

.

d d d 1 2 3 MANAGES „ „ „ r r r 1 2 3

The 1:1 Relationship Manages

(15)

Language & Information Processing System, LIS, NTU ER-29 WORKS_ON „ „ „ „ „ „ r r r r r r r 1 2 3 4 5 6 7

...

„ PROJECT

.

.

.

.

P P P P 1 2 3 4 EMPLOYEE

.

.

.

.

e e e e 1 2 3 4

The M:N relationship WORKS_ON

Participation Constraint

• Total

– if every employee must work for a department, the entity EMPLOYEE in WORKS_FOR is called total – sometimes called existence dependency

• Partial

– some or “part” of the set of employee entities are related ot a department entity via MANAGES, but not necessarily all

(16)

Language & Information Processing System, LIS, NTU ER-31

Attributes of Relationship

• The number of hours per week that an employee

works on a project

• Attributes of 1:1 or 1:N relationship types can be

migrated ot one of the participating entity types

– StartDate of MANAGES may be migrated to EMPLOYEE or DEPARTMENT

• For M:N relationship, the attribute should be

determined by the combination of participating

entities

Weak Entity Types

• Entity type without any key attribute is called

weak entity type

• Entities of a week entity type is identified by

specific entities from another entity type via

identifying relationship

• A weak entity type always has a total

participation constraint

(17)

Language & Information Processing System, LIS, NTU ER-33

Structure Constraints

• Specifying structural constraints involves

associating a pair of integer numbers (min, max)

with each participation of an entity type E in a

relationship R

• 0<=min<=max, max>=1

• Each entity e in E must participation in at least

min and at most max relationship instances in R

• min=0 means partial participation

• min>0 means total participation

ER Diagram for the COMPANY Schema

Fname Minit Lname Name Ssn Bdate Sex Address Salary EMPLOYEE WORKS_FOR MANAGES StartDate NumberOfEmployees Number Name Locations DEPARTMENT CONTROLS PROJECT WORKS_ON Hours SUPERVISION DEPENDENTS_OF DEPENDENT Name Location Number (1,N) (0,N) (1,1) supervisor supervisee (1,1) employee (0,N) (0,1) (0,1) manager (1,N) worker (0,N) employee (4,N) department (1,1) department-managed controlling-department controlled-project project dependent (1,1)

(18)

Language & Information Processing System, LIS, NTU ER-35

Summary of ER Diagram Notation

Symbol Meaning Symbol Meaning

ENTITY TYPE

WEAK ENTITY TYPE

RELATIONSHIP TYPE IDENTIFYING RELATIONSHIP TYPE ATTRIBUTE KEY ATTRIBUTE MULTIVALUED ATTRIBUTE COMPOSITE ATTRIBUTE DERIVED ATTRIBUTE E1 R TOTAL PARTICIPATION OF E2 IN R E1 1 R N E2 CARDINALITY RATIO 1:N FOR E1:E2IN R R E E2

(min,max) STRUCTURAL CONSTRAINT (min, max) ON PARTICIPATION

OF E IN R

Ternary Relationship Types

ProjName

SName ProjName

PartNo

SName Quantity ProjName

PartNo

PROJECT

PART

SUPPLIER PROJECT

PART

SUPPLIER SUPPLY PROJECT

PART SUPPLY SUPPLIES CAN_SUPPLY USES SS SPJ SP PartNo SName SUPPLIER Quantity (a) (b) (c) M N M M N N 1 N N 1 N 1

The ternary relationship type SUPPLY

(19)

Language & Information Processing System, LIS, NTU ER-37 TAUGHT_DURING OFFERS CAN_TEACH OFFERED_DURING CCI RESULTS_IN INSTRUCTOR SEMESTER COURSE CANDIDATE COMPANY INTERVIEW JOB_OFFER IName Sem_Year CNumber Year Semester Name CName Department Date Dept/Date

A weak entity type INTERVIEW,

with a ternary identifying relationship type. Another example of ternary

References

Related documents

• exclusive leader board ad on registration web site from date of contract through the summit • logo in pre-conference promotional material • Post-event registration lists

HVI-Certified loudness ratings are uniquely consistent because each certified product has been tested in the HVI-designated test laboratory, using the laboratory’s

Click the SAVE button to return to the previous screen, where you should now have a summary of your line items... Click the Save button once again to return to the main

Campos Carlos is the author of Latin Jazz Piano (0.0 avg rating, 0 ratings, 0 reviews, published 2000), Salsa and Afro Cuban Montunos for Guitar.. The latin play-a-long collection is

If you're stuck on playing it on a guitar, I recommend capoing on the 12th fret and playing the following (you could play this without the capo--the riff would just be an

--Configurar los enlaces troncales y la VLAN nativa S1(config)#interface range fa0/1-4. S1(config-if-range)#switchport

ICS Enhancement Supplemental Guidance: In situations where the ICS cannot support the use of automated mechanisms for monitoring and control of remote access methods,

• Cështja e bashkëpunimit, vështruar në kontekst të krijimit të hapësirave të bollshme për të ardhur deri të manifestimi në praktikë i shkathtësive praktike gjyqësore, e