ER Diagrams View as a PDF
Question 1
1.1 Schema Design
Given the following ER Diagram, please write out the corresponding relational schemas. Be sure to:
- remove redundant attributes
- underline or bold primary keys
- dashed-underline or italicize foreign keys
1.2 Queries
Next, use your schemas to answer the following queries in relational algebra.
- What are the names of the publishers who have published at least one book written by "JK Rowling"?
- What are the emails of customers who have strictly more than one (>1) of some book in a shopping basket?
- What are the pairs of different books that are in the same shopping basket?
- What are the books that are in more than one (>1) shopping basket?
- What are the names of customers with a book from every publisher in their shopping basket?
Question 2
2.1 Initial Design
Let's say you are designing a new website for Barry's Beehive Bonanza (BBB) on Thursday, and Barry needs to store customer data. You decide to design a relational database for Barry. Given the following business requirements, create an ER Diagram:
- The website should have users, each of which have an email, a name, a password, and any number of phone numbers.
- The website should also have beehives, each of which has a name, a location, a size, and a single owner, which must be a user.
- While users can own beehives (as described above), they can also subscribe to beehives. A beehive can have many subscribers and a user may subscribe to many beehives.
- The website should also have honey types, each of which has a name and a locale. Each beehive should have at least one honey type that they produce.
2.2 Amendments
Oh no! Barry realized that there are actually three kinds of beehives: the Langstroths, the Warres and the Top Bars. Each one needs different information about them; use generalization to accomodate the following new information in your ER Diagram:
- All Langstroths, Warres, and Top Bars are beehives, and each beehive is exactly one of a Langstroth, Warre, or Top Bar.
- Langstroths have a number of racks attribute.
- Warres have a wood type attribute; the wood can either be Oak, Pine, or Cedar.
- Top Bars have a
num_levels
attribute.
Question 3
3.1 ER Diagrams
Given the following schema, please draw out the corresponding ER Diagram. Be sure to:
- remove redundant attributes
- use the ER Diagram elements as laid out in the reference section below
person(id, name, age, address, phone_num)
gardener(person_id, years_exp)
tree(tree_id, max_height, years_to_maturity)
trees_cultivated(gardener_id, tree_id)
Note that:
- All gardeners are people, but not all people are gardeners
- A gardener can cultivate many different kinds of trees, and a specific tree can be cultivated by many different gardeners.
3.2 Amendment 1
Now, draw the same ER diagram with the following added details:
- Consider now that there are landscapers; landscapers are people, but they are not gardeners. There are no landscapers that are not people. Landscapers have an hourly_rate.
- There are now also pilots; pilots are people, but are neither gardeners nor landscapers. Pilots fly planes, each of which has a name, weight, and maximum_flying_height. Pilots can fly many planes, and planes can be flown by many pilots. Pilots, especially low-flying ones, also have trees that they dislike. Pilots can have many disliked trees, and a tree can be disliked by many pilots.
3.3 Amendment 2
Now, all of these people can be members of a union. A union should have a name, a location of operation, and a founding year. There is each a gardener union, a landscaper union, and a pilot union. Consider now that there is no overlap between these unions. Not all of each profession are in a union, but all unions have at least one member. People can only be in one union. People without jobs cannot be in a union.
3.4 Bringing it back
Lastly, using your new ER Diagram, write a new relational schema for this scenario. If you need to change existing schemas, that is perfectly fine.
Question 4
Consider the following three ER Diagrams:
Items have an item ID, a name, and a price. Customers have a customer ID and a name. Salepersons have an employee ID and a name. Only one item can be sold at a time. Items are fancy, individually-made works of art that are each unique. Per the artist's request, a customer may only ever purchase one item. The artist is very insistent on this!
- Which one(s) should we NOT use if our only query will be retrieving salespersons who helped customers? Why?
- Which one(s) should we NOT use if our only query will be retrieving the items sold by salespersons? Why?
- Suppose we are equally interested in gaining information between which customers are being helped by which salespersons and which salespersons are selling which items. Indicate which of the above we should choose and justify your choice.
FAQ
- There are some discrepancies between the lecture slides and the textbook; when in doubt, follow the textbook as the source of truth.
- Feel free to use any software to draw your ER Diagram. We recommend Google Drawings or Draw.io.
Reference
Feedback
As this is a new course, we appreciate any feedback you have for us! If you enjoyed this assignment, hated this assignment, or have other thoughts to share, please do so here!