Full disclosure ... I am trying feverishly here to find out more about databases, so I put in at that time, and also tried to get this answer from the source to no avail.
Barry Williams from the database has such a scheme.
Customer and Fees Scheme

I am trying to understand the partitioning of address tables in this diagram. It is clear to me that the Addresses table contains detailed information about this address. The Client_Addresses and Staff_Addresses tables are what bothers me.
1) I understand the use of primary foreign keys as shown, but I was on the assumption that when they are used, you do not have a resident primary key in the same table (date_address_from in this case). Can someone explain the reasoning to both and put into words how this works?
2) Why did you use date_address_from as your primary key instead of something like client_address_id like PK? What if someone enters two addresses in one day, will there be conflicts in his design? If yes or no, what?
3) In accordance with normalization standards ... Since the values of date_address_from and date_address_to are the same in the Client_Addresses and Staff_Addresses tables, should these fields just not be included in the main address table?
source
share