Hi all
We have a table that logs client communications. This needs to be altered to log additional followup communications which are linked to the original communication.
Communication Table
The question is, do we create a new table to record the follow ups or do a self join.
The advantage of the self join is because all the fields will be the same as the communication table and also a query to find follow ups or communications would be simpler.
The advantage of having two tables would be the table size.
Anyone any suggestions?
We have a table that logs client communications. This needs to be altered to log additional followup communications which are linked to the original communication.
Communication Table
Code:
communicationid (primary)
contactid (foreign)
overview
date
The question is, do we create a new table to record the follow ups or do a self join.
The advantage of the self join is because all the fields will be the same as the communication table and also a query to find follow ups or communications would be simpler.
The advantage of having two tables would be the table size.
Anyone any suggestions?