Java程序辅导

C C++ Java Python Processing编程在线培训 程序编写 软件开发 视频讲解

客服在线QQ:2653320439 微信:ittutor Email:itutor@qq.com
wx: cjtutor
QQ: 2653320439
An Example: Video Rental System
Video Rental
Database
VideosRentalsCustomers
E-R Analysis …
1 . Sim ilar ob jects are g rouped into entity sets
2 . Determ ine the attributes ( or propert ies)  of
ob jects in the sets.  Usually choose one of the
attributes of an entity or relat ionship set to
be the identif ier
3 . Model all interactions between the ob jects in
the entity sets by relat ionship and
relat ionship sets
4 . Model relat ionship card inality
5 . Model relat ionship part icipation
ERD Example
MOVIE CUSTOMER
PRODUCER
E-R Analysis …
1 . Sim ilar ob jects are g rouped into entity sets
2 . Determ ine the attributes ( or propert ies)  of
ob jects in the sets.  Usually choose one of the
attributes of an entity or relat ionship set to
be the identif ier
3 . Model all interactions between the ob jects in
the entity sets by relat ionship and
relat ionship sets
4 . Model relat ionship card inality
5 . Model relat ionship part icipation
Attributes
 Attribute - property or characteristic of an
entity type
 Classifications of attributes:
 Required versus Optional Attributes
 Simple versus Composite Attribute (e.g. name)
 Single-Valued versus Multi-valued Attribute (e.g
Qualifications)
 Stored versus Derived Attributes (e.g Age & DoB)
 Identifier Attributes
 Identifier - An attribute (or combination of attributes) that
uniquely identifies individual instances of an entity type
 Simple Key versus Composite Key
ERD Example
MOVIE
MovieID
Title
Duration
CUSTOMER
CustomerID
FIrstName
Address
PRODUCER
CompanyName Country
Rating
LastName
PhoneNumberBirthDate
_______ __________
CompanyID
E-R Analysis …
1 . Sim ilar ob jects are g rouped into entity sets
2 . Determ ine the attributes ( or propert ies)  of
ob jects in the sets.  Usually choose one of the
attributes of an entity or relat ionship set to
be the identif ier
3 . Model all interactions between the ob jects in
the entity sets by relat ionship and
relat ionship sets
4 . Model relat ionship card inality
5 . Model relat ionship part icipation
Relationships
 Relationship Types vs. Relationship Instances
 The relationship type is modelled as the diamond and
lines between entity types…the instance is between
specific entity instances
 Relationships can have attributes
 These describe features pertaining to the association between the
entities in the relationship
 Two entities can have more than one type of
relationship between them (multiple relationships)
 Associative Entity – combination of relationship
and entity
ERD Example
MOVIE
MovieID
Title
Duration
CUSTOMER
CustomerID
FIrstName
Address
rent
PRODUCER
directed
CompanyName Country
Rating
LastName
PhoneNumberBirthDate
companyID
Date_Rented Due_Date
E-R Analysis …
1 . Sim ilar ob jects are g rouped into entity sets
2 . Determ ine the attributes ( or propert ies)  of
ob jects in the sets.  Usually choose one of the
attributes of an entity or relat ionship set to
be the identif ier
3 . Model all interactions between the ob jects in
the entity sets by relat ionship and
relat ionship sets
4 . Model relat ionship card inality
5 . Model relat ionship part icipation
Cardinality of Relationships
 One-to-One
 Each entity in the relationship will have exactly one
related entity
 One-to-Many
 An entity on one side of the relationship can have
many related entities, but an entity on the other side
will have a maximum of one related entity
 Many-to-Many
 Entities on both sides of the relationship can have
many related entities on the other side
ERD Example
MOVIE
MovieID
Title
Duration
CUSTOMER
CustomerID
FIrstName
Address
rent
Date_Rented
PRODUCER
directed
CompanyName Country
Rating
LastName
PhoneNumberBirthDateDue_Date
CompanyID
E-R Analysis …
1 . Sim ilar ob jects are g rouped into entity sets
2 . Determ ine the attributes ( or propert ies)  of
ob jects in the sets.  Usually choose one of the
attributes of an entity or relat ionship set to
be the identif ier
3 . Model all interactions between the ob jects in
the entity sets by relat ionship and
relat ionship sets
4 . Model relat ionship card inality
5 . Model relat ionship part icipation
ERD Example
MOVIE
MovieID
Title
Duration
CUSTOMER
CustomerID
FIrstName
Address
rent
Date_Renteddirected
Rating
LastName
PhoneNumberBirthDateDue_Date
PRODUCER
CompanyName Country
CompanyID
Mapping Rules (Simplified)
 Map Regular Entities
 Map Binary Relationships
 One-to-many Relationships
 Many-to-many relationships
Mapping Regular Entities
MOVIE
MovieID
Title
Duration
Rating
MovieID Title Duration Rating
MOVIE
Mapping One-to-many relationships
MovieID Title Rating Rating
CompanyNameCompanyID Country
MOVIE
MovieID
Title
Duration
directed
Rating
DirectorID
MOVIE
PRODUCERR
PRODUCER
CompanyName Country
CompanyID
Mapping Many-to-many relationships
MOVIE
MovieID
Title
Duration
CUSTOMER
CustomerID
FIrstName
Address
rent
Date_Rented
Rating
LastName
PhoneNumberBirthDateDue_Date
MovieID Title Rating Duration
CustomerID FName Address
MOVIE
CUSTOMER
DoB PhoneLName
Due_Rented
RENTAL
MovieID CustomerID Due_Date
Final Map
MovieID Title Rating Audience
CustomerID FName Address
MOVIE
CUSTOMER
DoB PhoneLName
Due_Rented
RENTAL
MovieID CustomerID Due_Date
CompanyID
CompanyNameCompanyID Country
PRODUCERR
Resulting 4 Tables
MOVIE
MovieID (PK)
Title
Audience
Duration
DirectorID (FK)
PROCUER
CompnayID (PK)
CompanyName
Country
RENTAL
CustomerID
(FK)
MovieID (FK)
Date_Rented
Date_Due
CUSTOMER
CustomerID(PK)
FName
LName
Address
Phone
DoB
Any problems with Rental Table ?
Metadata for Customer
 Customer
 FirstName Character 30 First name
 LastName Character 30 Last name
 Address Character 60 Location
 PhoneNumber Character 10 Telephone
 BirthDate Date DD-MM-YY
 CustomerID Character 8 Unique ID