Perhaps I should phrase this differently to elicit some feedback….
I am trying to have an address table that can be used by Employee, Customer, Business, etc. I can’t do a many-to-one because the address won’t know who it belongs to. I thought perhaps a lookup table would work, but I haven’t seen any examples that works across multiple tables, mostly just to join two tables.
Does anyone know how to best join a single table with several others independtly? Of is it better just to have an address table for eah entity that could use it – EmployeeAddressTable, CustomerAddressTable, etc?