1 / 47

The Entity-Relationship (E-R) Model

The Entity-Relationship (E-R) Model. Lecture Topics Basic E-R modelling Extensions to E-R modelling Designing an E-R schema Deriving relational schema from E-R diagrams Textbook Chapter 2 Section 3.5. Overview of E-R model. used for database (conceptual schema) design

lela
Download Presentation

The Entity-Relationship (E-R) Model

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. The Entity-Relationship (E-R) Model Lecture Topics • Basic E-R modelling • Extensions to E-R modelling • Designing an E-R schema • Deriving relational schema from E-R diagrams Textbook • Chapter 2 • Section 3.5 Entity-Relationship Model

  2. Overview of E-R model • used for database (conceptual schema) design • world/enterprise described in terms of: • entities • attributes • relationships • visualization: ER-diagram • mature methodology (initially described by Chen, 1976) Entity-Relationship Model

  3. Basic E-R modelling Burglary Student Flight • Entity: a distinguishable object • Entity set: set of entities of same type • E.g. • students currently enrolled • flights offered by Air Canada • burglaries in Ontario during 2003 • Graphical representation of entity sets: Entity-Relationship Model

  4. ...continued Major Student StudentNum StudentName • Attributes describe properties of entities • E.g. for Student entities: StudentNum, StudentName, Major, etc. • Domain: set of permitted values for an attribute • Graphical representation of attributes: Entity-Relationship Model

  5. …continued • Relationship: representation of the fact that certain entities are related to each other • Relationship set: set of relationships of a given type • E.g. • students registered in courses • passengers booked on flights • parents and their children • bank branches, customers, and their accounts • In order for a relationship to exist, the participating entities must exist Entity-Relationship Model

  6. Graphical representation of relationship sets StudentNum Student StudentName RegisteredIn CourseNum Course Entity-Relationship Model

  7. BranchName AccountNum Branch Account Balance CAB Customer StreetAddr SIN CustomerName CustomerCity ...continued Entity-Relationship Model

  8. Recursive relationships and role names Address HomeTeam Team Location Match Visitor LocName TeamName • Role: the function of an entity set in a relationship set • Role name: an explicit indication of a role • E.g. • Role labels are needed whenever an entity set has multiple functions in a relationship set. Entity-Relationship Model

  9. Relationships and attributes Score Address HomeTeam Location Team Match Visitor LocName TeamName • Relationships may also have attributes: Entity-Relationship Model

  10. Constraints in E-R models • binary relationship cardinalities • general cardinality constraints • primary keys • existence dependencies Entity-Relationship Model

  11. Binary relationship cardinality 1 N B A R N 1 WorksIn Employee Department • relationships between two entity sets, A and B • many-to-one (N:1): each entity in A can be related to at most one entity in B, but an entity in B may be related to many entities in A • E-R diagram notation: • E.g. • similarly: one-to-many (1:N) Entity-Relationship Model

  12. 1 1 Department Employee Manages N N Employee Project WorksOn ...continued • one-to-one (1:1): each entity in A can be related to at most one entity in B, and vice versa • E.g. • many-to-many (N:N): an entity can be related to many entities in the other set, and vice versa • E.g. Entity-Relationship Model

  13. General cardinality constraints . . . E R (lower,upper) Student Course Takes (3,5) (6,100) • Determine lower and upper bounds on the number of relationships of a given relationship set in which a component entity may participate • E-R diagram notation: • E.g. Entity-Relationship Model

  14. Primary keys Dnum Department ManagerName Dname Budget Salary Employee FirstName LastName Initial • as in relational model, each entity must be distinguishable from any other entity in its set by its attributes • Primary key: selection of attributes chosen by designer as a primary identifier of entities in entity set • E.g. • E.g. Entity-Relationship Model

  15. Existence dependencies Balance Account AccNum 1 Of N TransNum Transaction Amount Date • Sometimes the existence of an entity depends on the existence of another entity • If x is existence dependent on y, then • y is a dominant entity • x is a subordinate entity • E.g. “Transactions are existence dependent on accounts.” Entity-Relationship Model

  16. Primary keys of subordinate entity sets Balance Account AccNum 1 Of N TransNum Transaction Amount Date • Weak entity set: an entity set with subordinate entities • Strong entity set: an entity set with no subordinate entities • primary identifier of weak entity sets combines with primary identifier of associated strong entity set • E.g. “All transactions for a given account have a unique transaction number.” Entity-Relationship Model

  17. Other Relationship N N 1 1 Identifying Relationship E ...continued • A weak entity must have an N:1 relationship to a distinct entity set • Discriminator of a weak entity set: set of attributes that distinguish subordinate entities of the set, for a particular dominant entity • Primary key for a weak entity set: discriminator + primary key of entity set for dominating entities • ER diagram notation: (distinguishing an identifying relationship) Entity-Relationship Model

  18. Example E-R diagram Course CourseName CourseNum (1,N) 1 SectionOf (1,1) N SectionNum (1,1) Section (6,50) N N TaughtBy EnrolledIn Mark (0,N) 1 N (3,5) Professor Student StudentName ProfName StudentNum ProfNum Entity-Relationship Model

  19. Extensions to E-R modeling • Structured attributes • Aggregation • Specialization • Generalization Entity-Relationship Model

  20. Structured attributes Street City Employee Address Province Hobbies PostalCode • Composite attributes: attributes composed of two or more other attributes • Multi-valued attributes: attributes that are set-valued • E.g. Entity-Relationship Model

  21. Aggregation CourseNum N N EnrolledIn Course Student (0,1) StudentNum ExpirationDate CourseAccount (0,1) UserId Account • Relationships can be viewed as higher-level entities • E.g. “Accounts are assigned to a given student enrollment.” Entity-Relationship Model

  22. CourseNum N N EnrolledIn Course Student StudentNum CourseAccount ExpirationDate UserId Account ...continued • same, without aggregation: Entity-Relationship Model

  23. Specialization StudentNumber Student StudentName N 1 Professor SupervisedBy Graduate (1,1) (0,N) Degrees ProfessorName • A more specialized kind of entity set may be derived from a given entity set • E.g. “Graduate students are students that have a supervisor and a number of degrees.” Entity-Relationship Model

  24. Generalization PassengerCount MaxSpeed LicenceNum Car Price MakeAndModel AxleCount LicenceNum Truck Tonnage Price MakeAndModel • Two or more existing entity sets can be abstracted as a more general kind of entity set • E.g. “A vehicle abstracts the notion of a car and a truck.” Entity-Relationship Model

  25. MakeAndModel LicenceNum Price Vehicle Car Truck MaxSpeed Tonnage AxleCount PassengerCount Vehicle Vehicle isa Car Truck Car Truck ...continued • alternate diagram notations: Entity-Relationship Model

  26. Designing an E-R schema • usually many ways to design an E-R schema • points to consider: • use attribute or entity set? • use entity set or relationship set? • degrees of relationships? • extended features? Entity-Relationship Model

  27. Choosing between attributes and entity sets • no simple answer! • E.g. model employees’ phones by a PhoneNumber attribute, or by Phone entity set related to Employee entity set? • is it (could it be) a separate object? • do we maintain information about it? • can several of its kind belong to another single entity? • does it make sense to delete such an object? • can it be missing from some of the entity set’s entities? • can it be shared by different entities? • “yes” to any of the above implies introducing a new entity set Entity-Relationship Model

  28. Choosing between entity sets and relationship sets BranchName Branch Balance Account AccountNum StreetAddr Customer SIN CustomerCity CustomerName • again no simple answer! • E.g. Instead of representing accounts as entities, we could represent them as relationships Entity-Relationship Model

  29. Use of non-binary relationships BranchName AccountNum Account Branch Balance BranchAcc CustomerAcc SIN Customer StreetAddr CustomerCity CustomerName • Can always represent a relationship on n entity sets with n-1 binary relationships Entity-Relationship Model

  30. BranchName AccountNum Account Branch Balance CABBranch CABAccount CAB CABCustomer SIN Customer StreetAddr CustomerCity CustomerName ...continued • Another representation: Entity-Relationship Model

  31. Use of extended E-R features • Can improve modularity and abstraction if used with care • Excessive use can complicate design Entity-Relationship Model

  32. A simple methodology • recognize entity sets • recognize relationship sets and participating entity sets • recognize attributes of entity sets and attributes of relationship sets • define binary relationship types and existence dependencies • define general cardinality constraints, keys and discriminators • draw diagram For each step, maintain a log of assumptions motivating the choices, and of restrictions imposed by the choices. Entity-Relationship Model

  33. Translating E-R diagrams to relational schema • General approach is straightforward: • each entity set becomes a table • each attribute (of an entity) becomes a table column • each relationship set becomes either table columns or table by itself Entity-Relationship Model

  34. Representing strong entity sets Student Major StudentNum StudentName StudentNum StudentName Major • Entity set E with attributes a1, ..., an table E with attributes a1, ..., an • Entity of type Erow in table E • Primary key of entity set primary key of table • E.g. Student Entity-Relationship Model

  35. Structured attributes Major Student Minor StudentNum StudentName Surname GivenName StudentNum Surname GivenName Major StudentNumMinor • Composite attributes, multi-valued attributes • E.g. Student Minors Entity-Relationship Model

  36. Representing Weak Entity Sets • Weak entity set Etable E • Columns of table E include: • attributes of the weak entity set • attributes of the identifying relationship set (if any) • primary key attributes of entity set for dominating entities • Primary key of weak entity set primary key of table Entity-Relationship Model

  37. Balance Account AccNum 1 Log N TransNum Transaction Date Amount AccNum Balance TransNumAccNum Date Amount ...continued • E.g. Account Transaction Entity-Relationship Model

  38. Representing relationship sets • If the relationship set is an identifying relationship set for a weak entity set then no action needed • If some component entity set E has general cardinality constraint (1,1), add columns to table E: • attributes of the relationship set • primary key attributes of remaining component entity sets Entity-Relationship Model

  39. (1,1) Employee Date Deduction TD1 EmpNum TD1Category CPP IncomeTax EI EHT EmpNum Date TD1Category TD1Category CPP EI EHT IncomeTax ...continued • E.g. Employee TD1 Entity-Relationship Model

  40. ...continued • Otherwise: relationship set Rtable R • Columns of table R include: • attributes of the relationship set • primary key attributes of each component entity set • Primary key of table R: • if some component entity set E has the general cardinality constraint (0,1), choose the primary key attributes for E • otherwise, choose the primary key attributes of each component entity Entity-Relationship Model

  41. (1,N) Student Registered Preference Name Course SNum CNum Name SNum Name CNum Name SNumCNum Preference SNum CNum Preference ...continued • E.g. Student Course Registered • Cardinality (1,N): • Cardinality (0,1): Entity-Relationship Model

  42. Score Address HomeTeam Location Team Match Visitor TeamName LocName LocName Address HomeTeamNameVisitorTeamNameLocName Score ...continued • E.g. Location Team TeamName Match • Note that the role name of a component entity set is prepended to its primary key attributes Entity-Relationship Model

  43. Representing aggregation • Tabular representation for aggregation of relationship set R = tabular representation for relationship set R • To represent relationship set involving aggregation of R, treat the aggregation like an entity set whose primary key = primary key of the table for R Entity-Relationship Model

  44. CourseNum N N Course Student EnrolledIn 1 ExpirationDate CourseAccount StudentNum 1 UserId Account StudentNumCourseNum UserId StudentNum CourseNum ExpirationDate ...continued • E.g. Student Account Course StudentNum CourseNum UserId EnrolledIn CourseAccount Entity-Relationship Model

  45. Representing specialization StudentNumber Student StudentName N 1 Professor SupervisedBy Graduate (1,1) (0,N) Degrees ProfessorName StudentNumber StudentName StudentNumber ProfessorName StudentNumberDegree • Create specialized table with primary attribute of higher-level entity, plus attributes as usual Student Professor Graduate ProfessorName Degree Entity-Relationship Model

  46. Representing generalization • Create a table for each lower-level entity set only • Columns of new tables should include: • Attributes of lower level entity set • Attributes of the superset • The higher-level entity set can be defined as a view on the tables for the lower-level entity sets Entity-Relationship Model

  47. MakeAndModel LicenceNum Price Vehicle Car Truck MaxSpeed Tonnage AxleCount PassengerCount LicenceNum MakeAndModel Price Tonnage AxleCount LicenceNum MakeAndModel Price MaxSpeed P’gerCount ...continued • E.g. Truck Car Entity-Relationship Model

More Related