I'm talking about database diagrams. i need to convert an ER diagram into a relational scheme. I noticed that a multivalued attribute is an ID of another entity.
To be specific, there are two entities. a WORKSTATION and a COMPUTER UNIT. the WORKSTATION has a multivalued attribute "unit". its values are the ID of COMPUTER UNIT. how should i transform that into relational?
From what I know, a new relation is created for multivalued attribute. the relation will have attributes for the ID of the workstation and ID of the unit. in that case, the values of the "unit" attribute will point to the ID of COMPUTER UNIT then it will be a relation that represents a many-to-many relationship. but a COMPUTER UNIT only has 1 WORKSTATION while a workstation can have multiple COMPUTER UNIT.