- Information
- AI Chat
Was this document helpful?
Worksheet Chapter 5 Memo
Course: Introduction to Databases and Databases Management Systems:Part 1 (CSIQ2634)
37 Documents
Students shared 37 documents in this course
University: University of the Free State
Was this document helpful?
1 | P a g e
UNIVERSITY OF THE FREE STATE
Department of Computer Science
and Informatics
CSIS2634
Worksheet (Chapter 5)
Question 1
Create an ERD using UML notation that can implement the following application from the
manufacturing industry at least the following business rules. Make sure you include all appropriate
entities, relationships, connectivities and cardinalities:
Each supplier has a unique name.
More than one supplier can be located in the same city.
Each part has a unique part number.
Each part has a colour,
A supplier can supply more than one part.
A part can be supplied by more than one supplier.
A supplier can supply a fixed quantity of each part.
Normalisation has not been done yet, so colour and city are not separate entitities
Supplier
SupplierNamePK
SupplierPart
SupplierNamePK
SupplierPartQuantity
Part_IdPK
Part
Part_IdPK
Part_Colour
SupplierCity
1..1 1..*
supplies >
1..*
1..1
supplied by >