I want to design a database for my application, and I have a question about the way to define a relation between the entities.
I have 2 related entities which ID is compound. For example:
- an address entity which are identified by the properties [street number, house number, city, country], and a phone number (xx-yyyyyy)
- an entity which is identified by the properties [region number, the number].
The relation is "For each address there are several phone numbers. I have two possible ways to define the tables:
- Tables that connected by all the ID fields
- Address → [street number, house number, city, country, ..., region number, the number]
- PhoneNumber → [region number, the number, ...]
- Tables with an ID field (GUID) which connected by this field.
- Address → [ID, street number, house number, city, country, ...,]
- PhoneNumber → [ID, region number, the number, ..., AddressID]
In the first solution, the primary key will be all the fields that identifies the entity, and in the second soultion, the primary key will be only the ID field.
My question is - what is the better way? (by performance, maintanance, design, etc...)
