SlideShare uma empresa Scribd logo
1 de 29
Database Design and E-R Model

           Chapter 6
phase of database design
• to characterize fully the data needs of the prospective database users.
    – The outcome of this phase is a specification of user requirements.
• the designer chooses a data model and, by applying the concepts of the chosen
  data model, translates these requirements into a conceptual schema of the
  database.
    – The schema developed at this conceptual-design phase provides a detailed overview
      of the enterprise.
    – The designer reviews the schema to confirm that all data requirements are indeed
      satisfied and are not in conflict with one another
• A fully developed conceptual schema also indicates the functional requirements
  of the enterprise.
    – In a specification of functional requirements, users describe the kinds of operations (or
      transactions) that will be performed on the data
    – the designer can review the schema to ensure it meets functional requirements.
• The Process of moving from an abstract data model to the implementation of the
  database proceeds in two final design phases.
    – The logical-design phase, the designer maps the high level conceptual schema onto
      the implementation data model of the database system that will be used.
    – The physical-design phase, in which the physical features of the database are
      specified
Design Alternatives
• Avoiding bad designs is not enough. There may
  be a large number of good designs from which
  we must choose.
• in designing a database schema, we must ensure
  that we avoid two major pitfalls:
• Redundancy: A bad design may repeat
  information.
• Incompleteness: A bad design may make certain
  aspects of the enterprise difficult or impossible
  to model.
The Entity-Relationship Model
• The entity-relationship (E-R) data model was developed
  to facilitate database design by allowing specification of
  an enterprise schema that represents the overall logical
  structure of a database.
• The E-R data model is one of several semantic data
  models;
   – its representation of the meaning of the data.
• The E-R model is very useful in mapping the meanings
  and interactions of real-world enterprises onto a
  conceptual schema.
• The E-R data model employs three basic notions:
   – entity sets, relationship sets, and attributes.
Modeling
• A database can be modeled as:
   – a collection of entities,
   – relationship among entities.
• An entity is an object that exists and is
  distinguishable from other objects.
   – Example: specific person, company, event, plant
• Entities have attributes
   – Example: people have names and addresses
• An entity set is a set of entities of the same
  type that share the same properties.
   – Example: set of all
     persons, companies, trees, holidays
Entity Sets customer and loan
customer_id customer_ customer_ customer_    loan_ amount
            name street      city         number
Relationship Sets
• A relationship is an association among several
  entities
  Example:
        Hayes         depositor       A-102
   customer entity relationship set account entity
• A relationship set is a mathematical relation among
  n 2 entities, each taken from entity sets
           {(e1, e2, … en) | e1 E1, e2 E2, …, en En}

  where (e1, e2, …, en) is a relationship
   – Example:
         (Hayes, A-102)   depositor
Relationship Set borrower
Relationship Sets (Cont.)
• An attribute can also be property of a relationship set.
• For instance, the depositor relationship set between entity sets
  customer and account may have the attribute access-date
Degree of a Relationship Set
• Refers to number of entity sets that participate in a
  relationship set.
• Relationship sets that involve two entity sets are binary (or
  degree two). Generally, most relationship sets in a
  database system are binary.
• Relationship sets may involve more than two entity sets.

      Example: Suppose employees of a bank may have jobs
        (responsibilities) at multiple branches, with different jobs at
        different branches. Then there is a ternary relationship set
        between entity sets employee, job, and branch
• Relationships between more than two entity sets are rare.
  Most relationships are binary. (More on this later.)
Attributes
• An entity is represented by a set of attributes, that is
  descriptive properties possessed by all members of an
  entity set.
    Example:
            customer = (customer_id, customer_name,
               customer_street, customer_city )
            loan = (loan_number, amount )

• Domain – the set of permitted values for each attribute
• Attribute types:
   – Simple and composite attributes.
   – Single-valued and multi-valued attributes
       • Example: multivalued attribute: phone_numbers
   – Derived attributes
       • Can be computed from other attributes
       • Example: age, given date_of_birth
Composite Attributes
Mapping Cardinality Constraints
• Express the number of entities to which another
  entity can be associated via a relationship set.
• Most useful in describing binary relationship sets.
• For a binary relationship set the mapping
  cardinality must be one of the following types:
   –   One to one
   –   One to many
   –   Many to one
   –   Many to many
Mapping Cardinalities




        One to one                       One to many
Note: Some elements in A and B may not be mapped to any
elements in the other set
Mapping Cardinalities




       Many to one                     Many to many
Note: Some elements in A and B may not be mapped to any
elements in the other set
Keys
• A super key of an entity set is a set of
  one or more attributes whose values
  uniquely determine each entity.
• A candidate key of an entity set is a
  minimal super key
  – Customer_id is candidate key of customer
  – account_number is candidate key of account
• Although several candidate keys may
  exist, one of the candidate keys is
  selected to be the primary key.
Keys for Relationship Sets
• The combination of primary keys of the participating
  entity sets forms a super key of a relationship set.
   – (customer_id, account_number) is the super key of depositor
   – NOTE: this means a pair of entity sets can have at most one
     relationship in a particular relationship set.
      • Example: if we wish to track all access_dates to each account by
        each customer, we cannot assume a relationship for each access.
        We can use a multivalued attribute though
• Must consider the mapping cardinality of the
  relationship set when deciding what are the candidate
  keys
• Need to consider semantics of relationship set in
  selecting the primary key in case of more than one
  candidate key
E-R Diagrams




 Rectangles represent entity sets.
 Diamonds represent relationship sets.
 Lines link attributes to entity sets and entity sets to relationship sets.
 Double lines, which indicate total participation of an entity in a relationship set
 Ellipses represent attributes
        Double ellipses represent multivalued attributes.
        Dashed ellipses denote derived attributes.
 Underline indicates primary key attributes (will study later)
E-R Diagram With Composite, Multivalued, and Derived
                    Attributes
Relationship Sets with Attributes
Roles
• Entity sets of a relationship need not be distinct
• The labels “manager” and “worker” are called roles; they
  specify how employee entities interact via the works_for
  relationship set.
• Roles are indicated in E-R diagrams by labeling the lines that
  connect diamonds to rectangles.
• Role labels are optional, and are used to clarify semantics of the
  relationship
Cardinality Constraints
• We express cardinality constraints by drawing either a directed
  line ( ), signifying “one,” or an undirected line (—), signifying
  “many,” between the relationship set and the entity set.
• One-to-one relationship:
    – A customer is associated with at most one loan via the relationship
      borrower
    – A loan is associated with at most one customer via borrower
One-To-Many Relationship

• In the one-to-many relationship a loan is
  associated with at most one customer via
  borrower, a customer is associated with
  several (including 0) loans via borrower
Many-To-One Relationships

• In a many-to-one relationship a loan is
  associated with several (including 0) customers
  via borrower, a customer is associated with at
  most one loan via borrower
Many-To-Many Relationship
• A customer is associated with several (possibly
  0) loans via borrower
• A loan is associated with several (possibly 0)
  customers via borrower
Participation of an Entity Set in a Relationship Set

 Total participation (indicated by double line): every entity in the entity set
   participates in at least one relationship in the relationship set
        E.g. participation of loan in borrower is total
             every loan must have a customer associated to it via borrower
 Partial participation: some entities may not participate in any relationship in the
   relationship set
        Example: participation of customer in borrower is partial
Alternative Notation for Cardinality
                   Limits
 Cardinality limits can also express participation constraints
E-R   Diagram with a Ternary
          Relationship
Cardinality Constraints on Ternary
             Relationship
• We allow at most one arrow out of a ternary (or greater
  degree) relationship to indicate a cardinality constraint
• E.g. an arrow from works_on to job indicates each
  employee works on at most one job at any branch.
• If there is more than one arrow, there are two ways of
  defining the meaning.
   – E.g a ternary relationship R between A, B and C with arrows to B
     and C could mean
      1. each A entity is associated with a unique entity from B and C
     or
      2. each pair of entities from (A, B) is associated with a unique C
     entity,     and each pair (A, C) is associated with a unique B
   – Each alternative has been used in different formalisms
   – To avoid confusion we outlaw more than one arrow

Mais conteúdo relacionado

Mais procurados

2. Entity Relationship Model in DBMS
2. Entity Relationship Model in DBMS2. Entity Relationship Model in DBMS
2. Entity Relationship Model in DBMS
koolkampus
 
Basic database analysis(database)
Basic database analysis(database)Basic database analysis(database)
Basic database analysis(database)
welcometofacebook
 
Entity Relationship Model
Entity Relationship ModelEntity Relationship Model
Entity Relationship Model
Slideshare
 

Mais procurados (19)

2. Entity Relationship Model in DBMS
2. Entity Relationship Model in DBMS2. Entity Relationship Model in DBMS
2. Entity Relationship Model in DBMS
 
Basic database analysis(database)
Basic database analysis(database)Basic database analysis(database)
Basic database analysis(database)
 
dbms
dbmsdbms
dbms
 
Entityrelationshipmodel
EntityrelationshipmodelEntityrelationshipmodel
Entityrelationshipmodel
 
Bsc cs ii-dbms- u-iii-data modeling using e.r. model (entity relationship model)
Bsc cs ii-dbms- u-iii-data modeling using e.r. model (entity relationship model)Bsc cs ii-dbms- u-iii-data modeling using e.r. model (entity relationship model)
Bsc cs ii-dbms- u-iii-data modeling using e.r. model (entity relationship model)
 
Entity Relationship Model
Entity Relationship ModelEntity Relationship Model
Entity Relationship Model
 
The entity relationship model
The entity relationship modelThe entity relationship model
The entity relationship model
 
ER Diagrams Simplified
ER Diagrams SimplifiedER Diagrams Simplified
ER Diagrams Simplified
 
03 Ch3 Notes Revised
03 Ch3 Notes Revised03 Ch3 Notes Revised
03 Ch3 Notes Revised
 
enhanced er diagram
enhanced er diagramenhanced er diagram
enhanced er diagram
 
Unit02 dbms
Unit02 dbmsUnit02 dbms
Unit02 dbms
 
Database Systems - Entity Relationship Modeling (Chapter 4/2)
Database Systems - Entity Relationship Modeling (Chapter 4/2)Database Systems - Entity Relationship Modeling (Chapter 4/2)
Database Systems - Entity Relationship Modeling (Chapter 4/2)
 
Entity Relationship Diagram2
Entity Relationship Diagram2Entity Relationship Diagram2
Entity Relationship Diagram2
 
Schema relationship to E-R diagram
Schema relationship to E-R diagramSchema relationship to E-R diagram
Schema relationship to E-R diagram
 
Chapter-3 Data Modeling Using the Entity-Relationship Model
Chapter-3  Data Modeling Using the Entity-Relationship ModelChapter-3  Data Modeling Using the Entity-Relationship Model
Chapter-3 Data Modeling Using the Entity-Relationship Model
 
Desigining of Database - ER Model
Desigining of Database - ER ModelDesigining of Database - ER Model
Desigining of Database - ER Model
 
Entity Relationship Model
Entity Relationship ModelEntity Relationship Model
Entity Relationship Model
 
Basic concepts of Data and Databases
Basic concepts of Data and Databases Basic concepts of Data and Databases
Basic concepts of Data and Databases
 
E r model
E r modelE r model
E r model
 

Destaque (9)

Relational keys
Relational keysRelational keys
Relational keys
 
Enhanced E-R diagram
Enhanced E-R diagramEnhanced E-R diagram
Enhanced E-R diagram
 
Normalization
NormalizationNormalization
Normalization
 
Database Keys
Database KeysDatabase Keys
Database Keys
 
Feasibility report
Feasibility reportFeasibility report
Feasibility report
 
Feasibility study preparation and analysis
Feasibility study preparation and analysisFeasibility study preparation and analysis
Feasibility study preparation and analysis
 
Feasibility Report Powerpoint
Feasibility Report PowerpointFeasibility Report Powerpoint
Feasibility Report Powerpoint
 
Feasibility report -basic concepts with example
Feasibility report -basic concepts with exampleFeasibility report -basic concepts with example
Feasibility report -basic concepts with example
 
LinkedIn SlideShare: Knowledge, Well-Presented
LinkedIn SlideShare: Knowledge, Well-PresentedLinkedIn SlideShare: Knowledge, Well-Presented
LinkedIn SlideShare: Knowledge, Well-Presented
 

Semelhante a DBMS Class 3

Cn presentation on the topic called as re modelling
Cn presentation on the topic called as re modellingCn presentation on the topic called as re modelling
Cn presentation on the topic called as re modelling
g30162363
 
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptxDATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
JasmineMichael1
 

Semelhante a DBMS Class 3 (20)

10287 lecture5(2)
10287 lecture5(2)10287 lecture5(2)
10287 lecture5(2)
 
Datastage database design and data modeling ppt 4
Datastage database design and data modeling ppt 4Datastage database design and data modeling ppt 4
Datastage database design and data modeling ppt 4
 
entityrelationshipmodel.pptx
entityrelationshipmodel.pptxentityrelationshipmodel.pptx
entityrelationshipmodel.pptx
 
ER modeling
ER modelingER modeling
ER modeling
 
Chapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptxChapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptx
 
18306_lec-2 (1).ppt
18306_lec-2 (1).ppt18306_lec-2 (1).ppt
18306_lec-2 (1).ppt
 
ER Digramms by Harshal wagh
ER Digramms by Harshal waghER Digramms by Harshal wagh
ER Digramms by Harshal wagh
 
Database design
Database designDatabase design
Database design
 
E R Model details.ppt
E R Model details.pptE R Model details.ppt
E R Model details.ppt
 
PHP/MySQL Programming Class Lecture 03
PHP/MySQL Programming Class Lecture 03PHP/MySQL Programming Class Lecture 03
PHP/MySQL Programming Class Lecture 03
 
Database part3-
Database part3-Database part3-
Database part3-
 
Cn presentation on the topic called as re modelling
Cn presentation on the topic called as re modellingCn presentation on the topic called as re modelling
Cn presentation on the topic called as re modelling
 
DataBase ch2
DataBase ch2DataBase ch2
DataBase ch2
 
ER MODEL
ER MODELER MODEL
ER MODEL
 
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptxDATA MODEL PRESENTATION UNIT I-BCA I.pptx
DATA MODEL PRESENTATION UNIT I-BCA I.pptx
 
Unit 3 final.pptx
Unit 3 final.pptxUnit 3 final.pptx
Unit 3 final.pptx
 
Conceptual Modeling of Data
Conceptual Modeling of DataConceptual Modeling of Data
Conceptual Modeling of Data
 
Test presentation
Test presentationTest presentation
Test presentation
 
Day 1 SQL.pptx
Day 1 SQL.pptxDay 1 SQL.pptx
Day 1 SQL.pptx
 
SQL.pptx
SQL.pptxSQL.pptx
SQL.pptx
 

Mais de Dr. Mazin Mohamed alkathiri

Mais de Dr. Mazin Mohamed alkathiri (20)

ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Advance Mobile Application Development class 05
Advance Mobile Application Development class 05Advance Mobile Application Development class 05
Advance Mobile Application Development class 05
 
ESSENTIAL of (CS/IT/IS) class 05 (Software concepts)
ESSENTIAL of (CS/IT/IS) class 05 (Software concepts)ESSENTIAL of (CS/IT/IS) class 05 (Software concepts)
ESSENTIAL of (CS/IT/IS) class 05 (Software concepts)
 
OS-operating systems- ch03
OS-operating systems- ch03OS-operating systems- ch03
OS-operating systems- ch03
 
OS-operating systems - ch02 - part-2-2024
OS-operating systems - ch02 - part-2-2024OS-operating systems - ch02 - part-2-2024
OS-operating systems - ch02 - part-2-2024
 
Advance Mobile Application Development class 04
Advance Mobile Application Development class 04Advance Mobile Application Development class 04
Advance Mobile Application Development class 04
 
Advance Mobile Application Development class 03
Advance Mobile Application Development class 03Advance Mobile Application Development class 03
Advance Mobile Application Development class 03
 
Advance Mobile Application Development class 02-B
Advance Mobile Application Development class 02-BAdvance Mobile Application Development class 02-B
Advance Mobile Application Development class 02-B
 
OS-ch02-part-1-2024.ppt
OS-ch02-part-1-2024.pptOS-ch02-part-1-2024.ppt
OS-ch02-part-1-2024.ppt
 
Advance Mobile Application Development class 02
Advance Mobile Application Development class 02Advance Mobile Application Development class 02
Advance Mobile Application Development class 02
 
ESSENTIAL of (CS/IT/IS) class 03-04 (NUMERIC SYSTEMS)
ESSENTIAL of (CS/IT/IS) class 03-04 (NUMERIC SYSTEMS)ESSENTIAL of (CS/IT/IS) class 03-04 (NUMERIC SYSTEMS)
ESSENTIAL of (CS/IT/IS) class 03-04 (NUMERIC SYSTEMS)
 
Advance Mobile Application Development class 01
Advance Mobile Application Development class 01Advance Mobile Application Development class 01
Advance Mobile Application Development class 01
 
ESSENTIAL of (CS/IT/IS) class 02 (HCI)
ESSENTIAL of (CS/IT/IS) class 02 (HCI)ESSENTIAL of (CS/IT/IS) class 02 (HCI)
ESSENTIAL of (CS/IT/IS) class 02 (HCI)
 
Seminar
SeminarSeminar
Seminar
 
ESSENTIAL of (CS/IT/IS)
ESSENTIAL of (CS/IT/IS)ESSENTIAL of (CS/IT/IS)
ESSENTIAL of (CS/IT/IS)
 
OS-ch01-2024.ppt
OS-ch01-2024.pptOS-ch01-2024.ppt
OS-ch01-2024.ppt
 
Mobile Application Development class 008
Mobile Application Development class 008Mobile Application Development class 008
Mobile Application Development class 008
 

DBMS Class 3

  • 1. Database Design and E-R Model Chapter 6
  • 2. phase of database design • to characterize fully the data needs of the prospective database users. – The outcome of this phase is a specification of user requirements. • the designer chooses a data model and, by applying the concepts of the chosen data model, translates these requirements into a conceptual schema of the database. – The schema developed at this conceptual-design phase provides a detailed overview of the enterprise. – The designer reviews the schema to confirm that all data requirements are indeed satisfied and are not in conflict with one another • A fully developed conceptual schema also indicates the functional requirements of the enterprise. – In a specification of functional requirements, users describe the kinds of operations (or transactions) that will be performed on the data – the designer can review the schema to ensure it meets functional requirements. • The Process of moving from an abstract data model to the implementation of the database proceeds in two final design phases. – The logical-design phase, the designer maps the high level conceptual schema onto the implementation data model of the database system that will be used. – The physical-design phase, in which the physical features of the database are specified
  • 3. Design Alternatives • Avoiding bad designs is not enough. There may be a large number of good designs from which we must choose. • in designing a database schema, we must ensure that we avoid two major pitfalls: • Redundancy: A bad design may repeat information. • Incompleteness: A bad design may make certain aspects of the enterprise difficult or impossible to model.
  • 4. The Entity-Relationship Model • The entity-relationship (E-R) data model was developed to facilitate database design by allowing specification of an enterprise schema that represents the overall logical structure of a database. • The E-R data model is one of several semantic data models; – its representation of the meaning of the data. • The E-R model is very useful in mapping the meanings and interactions of real-world enterprises onto a conceptual schema. • The E-R data model employs three basic notions: – entity sets, relationship sets, and attributes.
  • 5. Modeling • A database can be modeled as: – a collection of entities, – relationship among entities. • An entity is an object that exists and is distinguishable from other objects. – Example: specific person, company, event, plant • Entities have attributes – Example: people have names and addresses • An entity set is a set of entities of the same type that share the same properties. – Example: set of all persons, companies, trees, holidays
  • 6. Entity Sets customer and loan customer_id customer_ customer_ customer_ loan_ amount name street city number
  • 7. Relationship Sets • A relationship is an association among several entities Example: Hayes depositor A-102 customer entity relationship set account entity • A relationship set is a mathematical relation among n 2 entities, each taken from entity sets {(e1, e2, … en) | e1 E1, e2 E2, …, en En} where (e1, e2, …, en) is a relationship – Example: (Hayes, A-102) depositor
  • 9. Relationship Sets (Cont.) • An attribute can also be property of a relationship set. • For instance, the depositor relationship set between entity sets customer and account may have the attribute access-date
  • 10. Degree of a Relationship Set • Refers to number of entity sets that participate in a relationship set. • Relationship sets that involve two entity sets are binary (or degree two). Generally, most relationship sets in a database system are binary. • Relationship sets may involve more than two entity sets. Example: Suppose employees of a bank may have jobs (responsibilities) at multiple branches, with different jobs at different branches. Then there is a ternary relationship set between entity sets employee, job, and branch • Relationships between more than two entity sets are rare. Most relationships are binary. (More on this later.)
  • 11. Attributes • An entity is represented by a set of attributes, that is descriptive properties possessed by all members of an entity set. Example: customer = (customer_id, customer_name, customer_street, customer_city ) loan = (loan_number, amount ) • Domain – the set of permitted values for each attribute • Attribute types: – Simple and composite attributes. – Single-valued and multi-valued attributes • Example: multivalued attribute: phone_numbers – Derived attributes • Can be computed from other attributes • Example: age, given date_of_birth
  • 13. Mapping Cardinality Constraints • Express the number of entities to which another entity can be associated via a relationship set. • Most useful in describing binary relationship sets. • For a binary relationship set the mapping cardinality must be one of the following types: – One to one – One to many – Many to one – Many to many
  • 14. Mapping Cardinalities One to one One to many Note: Some elements in A and B may not be mapped to any elements in the other set
  • 15. Mapping Cardinalities Many to one Many to many Note: Some elements in A and B may not be mapped to any elements in the other set
  • 16. Keys • A super key of an entity set is a set of one or more attributes whose values uniquely determine each entity. • A candidate key of an entity set is a minimal super key – Customer_id is candidate key of customer – account_number is candidate key of account • Although several candidate keys may exist, one of the candidate keys is selected to be the primary key.
  • 17. Keys for Relationship Sets • The combination of primary keys of the participating entity sets forms a super key of a relationship set. – (customer_id, account_number) is the super key of depositor – NOTE: this means a pair of entity sets can have at most one relationship in a particular relationship set. • Example: if we wish to track all access_dates to each account by each customer, we cannot assume a relationship for each access. We can use a multivalued attribute though • Must consider the mapping cardinality of the relationship set when deciding what are the candidate keys • Need to consider semantics of relationship set in selecting the primary key in case of more than one candidate key
  • 18. E-R Diagrams  Rectangles represent entity sets.  Diamonds represent relationship sets.  Lines link attributes to entity sets and entity sets to relationship sets.  Double lines, which indicate total participation of an entity in a relationship set  Ellipses represent attributes  Double ellipses represent multivalued attributes.  Dashed ellipses denote derived attributes.  Underline indicates primary key attributes (will study later)
  • 19. E-R Diagram With Composite, Multivalued, and Derived Attributes
  • 21. Roles • Entity sets of a relationship need not be distinct • The labels “manager” and “worker” are called roles; they specify how employee entities interact via the works_for relationship set. • Roles are indicated in E-R diagrams by labeling the lines that connect diamonds to rectangles. • Role labels are optional, and are used to clarify semantics of the relationship
  • 22. Cardinality Constraints • We express cardinality constraints by drawing either a directed line ( ), signifying “one,” or an undirected line (—), signifying “many,” between the relationship set and the entity set. • One-to-one relationship: – A customer is associated with at most one loan via the relationship borrower – A loan is associated with at most one customer via borrower
  • 23. One-To-Many Relationship • In the one-to-many relationship a loan is associated with at most one customer via borrower, a customer is associated with several (including 0) loans via borrower
  • 24. Many-To-One Relationships • In a many-to-one relationship a loan is associated with several (including 0) customers via borrower, a customer is associated with at most one loan via borrower
  • 25. Many-To-Many Relationship • A customer is associated with several (possibly 0) loans via borrower • A loan is associated with several (possibly 0) customers via borrower
  • 26. Participation of an Entity Set in a Relationship Set  Total participation (indicated by double line): every entity in the entity set participates in at least one relationship in the relationship set  E.g. participation of loan in borrower is total  every loan must have a customer associated to it via borrower  Partial participation: some entities may not participate in any relationship in the relationship set  Example: participation of customer in borrower is partial
  • 27. Alternative Notation for Cardinality Limits  Cardinality limits can also express participation constraints
  • 28. E-R Diagram with a Ternary Relationship
  • 29. Cardinality Constraints on Ternary Relationship • We allow at most one arrow out of a ternary (or greater degree) relationship to indicate a cardinality constraint • E.g. an arrow from works_on to job indicates each employee works on at most one job at any branch. • If there is more than one arrow, there are two ways of defining the meaning. – E.g a ternary relationship R between A, B and C with arrows to B and C could mean 1. each A entity is associated with a unique entity from B and C or 2. each pair of entities from (A, B) is associated with a unique C entity, and each pair (A, C) is associated with a unique B – Each alternative has been used in different formalisms – To avoid confusion we outlaw more than one arrow