1 / 40

Entities and Relationships

Entities and Relationships. What is a Relationship?. An association between or among entities. Can be binary, ternary, quartic, etc. Because entities are “types” of things, relationships also have to be “types” of associations.

xiomara
Download Presentation

Entities and Relationships

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. Entities and Relationships Database Principles

  2. Database Principles What is a Relationship? • An association between or among entities. Can be binary, ternary, quartic, etc. • Because entities are “types” of things, relationships also have to be “types” of associations. • Entities have instances and relationships have occurrences. Entities are while relationships happen. • In sentences, relationships often show up as verbs. • Is a relationship between the entities PERSON and AUTOMOBILE. is an occurrence of this relationship. Most People own Automobiles Andrew Pletch owns a VW Passat with VIN: 1234567890987654321

  3. Database Principles OWNS PERSON AUTOMOBILE How do we picture a Relationship? ? As a line joining the related entities with a diamond in the middle The name of the relationship goes in or on top of the diamond The relationship name tends to make grammatical sense in one direction only

  4. OWNS PERSON AUTOMOBILE This is a relationship This is a collection of occurrences of this relationship Just to make it clear: Database Principles

  5. Database Principles OWNS PERSON AUTOMOBILE PurchaseDate Can Relationships have Properties? • Yes! • They are also called attributes. • They appear in the diagram underneath the diamond. • Why can’t PurchaseDate be an attribute of AUTOMOBILE? • Reason 1: Because the same car can be sold several times and so have a list of PurchaseDates • Reason 2: Because PurchaseDate only makes sense in the context of “what car?” and “who bought it?” ?

  6. Database Principles OWNS PERSON AUTOMOBILE Attributes Don’t Get Copied. • The fact that a vehicle has an owner who has a name is modeled by the <owns> relationship. • We do NOT replicate this fact by also putting an extra attribute in the VEHICLE entity. SSN FName LName DOB VIN OwnerName Make Model Year NOT permitted/recommended

  7. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN PurchaseDate Does a Relationship have a Key? • Yes, but they are not documented in the relationship. • Typically it is the combined keys of the participating entities. • The key to <owns> is the pair (PersonID,VIN). • We do NOT duplicate these atrributes anywhere else in the diagram. • No two occurrences of <owns> have the same key values.

  8. Database Principles Exercise: • What does <owns> mean? • What are some occurrences of <owns>? • Describe a general occurrence of <owns>. • Based on the model, can the same person <own> the same vehicle more than once? Why not? • What would it mean to <own> the same vehicle more than once? Give a couple of examples. • How would we change the model if this kind of multiple ownership needed to be modeled?

  9. Database Principles What if you CAN <own> the same car more than once? • That’s possible! • But you need the purchase date to tell these two events apart • Key to <owns> now: (PersonID,VIN,PurchaseDate). • No two occurrences of <owns> have the same key values. • We underscore any attribute of a relationship that is part of the relationship key. OWNS PERSON AUTOMOBILE PersonID VIN PurchaseDate

  10. Database Principles Exercise: • How do the two versions of <owns> differ? • What are some occurrences of the new <owns>? • Describe a general occurrence of the new <owns>.

  11. Database Principles Relationship Cardinalities: • Read the notes: • Enterprise Rules are used by the database designer determine what things are entities, what things are relationships and what things are attributes. www.cs.newpaltz.edu/~pletcha/DB/ThreeQuestions.html Example: Every Employee earns one and only one salary EMPLOYEE ID . . . Salary single-valued fact about all employees so is modeled as an attribute of EMPLOYEE

  12. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN purchase_date Relationship Enterprise Rules: • How do we model the following rules? • The answer seems to boil down to asking how many times each PERSON or each AUTOMOBILE can participate in the <owns> relationship. Rule 1: A person can own one and only one AUTOMOBILE Rule 2: A person can own many automobiles acquired at any time Rule 3: Some people do not own automobiles at all Rule 4: Every automobile has at least one and possibly many owners.

  13. Database Principles How many vehicles can a person own? • Rule 1 and Rule 2 on the previous slide are mutually exclusive but our picture doesn’t allow us to say which of these is the rule that applies in this case. • That is because the picture is not complete. • We complete the picture by adding what we call Participation Numbers to each entities participation in each relationship.

  14. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN purchase_date Minimum Participation Numbers: • Does every PERSON own at least one AUTOMOBILE? • Is every AUTOMOBILE owned by at least one PERSON? (1,?) (0,?) √ no – min participation number (mPN) is 0 yes – min participation number (mPN) is 1 no – min participation number (mPN) is 0 yes – min participation number (mPN) is 1 √

  15. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN purchase_date Maximum Participation Numbers: • Does any PERSON own more than one AUTOMOBILE? • Is any AUTOMOBILE owned by more than one PERSON? (0,n) (1,1) (1,1) (0,n) no – max participation number (MPN) is 1 yes – max participation number (MPN) is n √ √ no – max participation number (MPN) is 1 yes – max participation number (MPN) is n

  16. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN purchase_date Interpreting Participation Numbers: (0,n) (1,1) Every PERSON <owns> at least one AUTOMOBILE mPN = 1: MPN = 1: mPN = 0: MPN = n: No PERSON <owns> more than one AUTOMOBILE Not every AUTOMOBILE <is owned by> a PERSON Some AUTOMOBILES<may be owned by> more than one PERSON

  17. Database Principles OWNS PERSON AUTOMOBILE PersonID VIN PurchaseDate OWNS PERSON AUTOMOBILE PersonID VIN PurchaseDate Participation Numbers and Keys • Compare • and (1,n) (0,n) (0,n) (1,n) The first lets a PERSON own multiple AUTOMOBILES but not the same AUTOMOBILE twice. The latter allows both things to happen.

  18. Database Principles An Example: A library keeps records of current loans of books to borrowers. Each borrower has a borrower# and each copy of a book has an accession# (there may be several copies of the same book). The library keeps the name and address of each borrower so that overdue reminders can be sent if necessary. For each book, the library keeps the title, authors, publisher, publication date, ISBN, purchase price and current list price. Borrowers can have one of two statuses - junior and senior. There are restrictions on the number of books a borrower may take out at one time depending on his/her status. Books which are out on loan may be reserved by other borrowers. The library does not buy paperbacks. When a new edition of a book is acquired, all copies of earlier editions are removed from the shelves.

  19. Database Principles List all Nouns: Library Loan Book Borrower Borrowerid Copy Accession_no B_name B_address Reminder Title Author Publisher Pub_date ISBN P_price C_price B_status Loan_limit Reservation A library keeps records of current loans of books to borrowers. Each borrower has a borrower# and each copy of a book has an accession# (there may be several copies of the same book). The library keeps the name and address of each borrower so that overdue reminders can be sent if necessary. For each book, the library keeps the title, authors, publisher, publication date, ISBN, purchase price and current list price. Borrowers can have one of two statuses - junior and senior. There is a loan limit on the number of books a borrower may take out at one time depending on his/her status. Books which are out on loan may be reserved by other borrowers. When a book is returned the person who made the earliest Reservation for he book is notified.

  20. Database Principles Which Nouns are Entities and Which are Attributes? Library Loan Book Borrower Borrowerid Copy Accession_no B_name B_address Reminder Title Author Publisher Pub_date ISBN P_price C_price B_status Loan_limit Reservation Why is Author not an entity? (i) It certainly is a property of Book. (ii) All we know about authors are their name. (iii) Authors do nothing but author books. (iv) In a Publishing House database Authors would be entities. (v) In a Library database, Authors only exist as authors of Books so do not have “independent” existence.

  21. Database Principles List Entities and their Attributes: Loan l_date -- how else do we know if it is overdue Book ISBN Author Title Pub_date C_price Borrower Borrowerid B_name B_address B_status Loan_limit Publisher Pub_name Reminder Copy Accession_no P_price Reservation R_date -- how else do we send a notice to the earliest reservation Why is Library dropped altogether? (i) Although certainly an entity, there isonly one instance. (ii) All other entities have multiple instances. (iii) No properties exist for Library other than its name. (iv) If our application was a library system with many libraries then it would make sense to make Library an entity.

  22. Database Principles First Look at a List of Entities: NOTES: 1: Things that have keys that belong to them are likely to be entities. 2: Nouns that are missing keys and seem to relate to other things are likely to be relationships and not entities.

  23. Database Principles Now Add Some Relationships 1: Reminder is more of a transaction or activity than a thing. All the info needed for a Reminder is found in other things. 2: Pub_name can be an attribute of Book if we drop the Publisher entity

  24. Database Principles Final Version (without mMpn):

  25. Database Principles Final Version (with mMpn) (n=0) Does every Cardholder reserve a book? Does any Cardholder reserve more than one book? Is every Book reserved by at least one Cardholder? Is any Book reserved by more than one Cardholder? Does every Cardholder borrow a book? Does any Cardholder borrow more than one book? Is every Copy borrowed by at least one Cardholder? Is any Cardholder borrowed by more than one Cardholder? [current loans only] Does every Book exist as a copy in the Library? Does any Book have more than one copy in the Library? Is every Copy a copy of some Book? Is any Copy a copy of more than one Book? y=n (n=0) (y=n) (n=0) (y=n) (n=0) (n=1) (y=1) (y=n) (y=1) (n=1) 1: Cardholder not Borrower (more accurate)

  26. Database Principles A Practical Approach to ER Design • Read the “Ten Steps to Database Design” web page. It shows how to complete the task of preparing an External View ER diagram in a systematic fashion. http://www.cs.newpaltz.edu/~pletcha/DB/TenSteps2DBDesign.html

  27. Database Principles VACCINE V_ID MANUFACTURER Man_ID distributed by, in COUNTRY Name More on Participation Numbers: • Some relationships are ternary: Consider vaccines produced by different manufacturers and sold in different countries. • The problem is, how to ask the PN questions.

  28. Database Principles VACCINE V_ID MANUFACTURER Man_ID distributed by, in COUNTRY Name Asking the Right Question: (1,n) (c,d) (a,b) (1,n) a? : Does every VACCINE participate at least once in the <distributed by, in> relationship? (n=0, y=1) b? : Does any VACCINE participate more than once in the <distributed by, in> relationship? (n=1, y=n) c? : d? : e? : f? : (e,f) (1,n) Does every MANUFACTURER <distribute> at least one VACCINE in some COUNTRY? Does any MANUFACTURER <distribute> more than one VACCINE in some COUNTRY? Is every COUNTRY the recipient of at least one VACCINE manufactured by someone? Is any COUNTRY the recipient of more than one VACCINE manufactured by someone?

  29. Database Principles A Class Example: Part A: An Airline has planes that are used to fly scheduled flights. Flight segments are between two airports – departure and arrival. They are scheduled to depart at a certain time and arrive at a certain time. The type of plane to be used is also known. Scheduled flights are a sequence of flight segments. Actual flights occur on particular dates using a particular plane flown by a particular pilot and co-pilot. They take off at a given time (perhaps) different from the scheduled departure time and have an ETA. Pilots have names, SSNs, addresses, DOB. Planes have unique numbers, capacities – both1st class and economy This database doesn’t deal with passengers.

  30. Database Principles A Class Example: Part B: An Airline reservation system keeps information about customers, their reservations, tickets, seat assignments for scheduled flights. Scheduled flights are between two airports – departure and arrival. They are scheduled to depart at a certain time and arrive at a certain time. The type of plane to be used is also known. Scheduled flights have flight numbers. Customer info includes name, address, email address, phone number A reservation is for a certain customer on a sequence of scheduled flights. It has a locator number. Each reservation has a single source and single destination airport. A ticket is a paid reservation. It has a ticket number and a payment method Including credit card info

  31. Weak Entities • An entity is weak if it depends on another entity for part of its key. • Remember, we can’t copy keys around an ER diagram. • We can’t do the following • But because the key to an Order Line is really the combination of (OrderNumber,LineNumber), Line instances depend on the key to Order for part of their key. Database Principles

  32. Weak Entities (cont): • Instead we draw a double line around the weaker (dependent) entity and the relationship that it depends on. • This picture says that Line is a weak entity whose key consists of the pair (OrderNumber, LineNumber). • Weak entities always have a (1,1) participation number pair linking to the entity they depend upon. Why? Database Principles

  33. Weak Entity – Another Example • Some times a relationship from one department’s point a view is an entity in some other department. • For the Registrar’s Office, Enrollment as a relationship between two entities – Student and Course: • For the Bursar’s Office, Enrollment is an entity that relates to a Chargeable Item. • Why are <enrolls> and Enrollment are the same thing??? Database Principles

  34. How to merge the two diagrams? NOTE: We converted a relationship into a weak- entity relationship become Registrar’s View Bursar’s View Database Principles

  35. A New Model for an Old Idea • The previous example used to be called aggregation. It used to be modeled as: • The box labeled Enrollment turned the <enrolls> relationship into an entity with the same key. • We don’t use this method any more because most modeling tools don’t support it. Database Principles

  36. IS_A • Before inheritance became popular because of OOP there was IS_A. • Both Professor and Student possess the attributes ID, Name and DOB by “inheritance”. • The key to Professor and the key to Student is the key to Person. Database Principles

  37. Modeling History: • The <borrows> relationship in the Library model only models current loans and not past loans. • This is clear for two reasons: • The same Copy can not be loaned more than once • Reason? • The same Cardholder can not borrow the same Copy more than once. • Reason? Database Principles

  38. Modeling History 2: • Suppose we wanted to model a complete loan history of all loans; past and present. • To allow more than one loan of the same copy we would first need to change the copy Max PN to n. • To allow the same Cardholder to borrow the same Copy more than once (but on different occasions) we need to add time to the key. To show that this is part of the key to <borrows> and not just another attribute we underline it. a copy can be loaned out more than once added to the key Database Principles

  39. Database Principles Self-Related Entities: • Some entities are related to themselves. • This models what kind of a data structure?

  40. Database Principles More on Participation Numbers: • Participation Numbers are concise representations of Enterprise Rules. • A database designer, viewing mMPNs, can make positive declarations about the rules by which a business is run. • Participation numbers are flexible enough (16 different ways to model a binary relationship) to handle all we need to do.

More Related