J
Jacqueline
I have a database that has one table right now, called "Contacts". That
table has fields like Last_Name, First_Name, Address1, City1, State1, Zip1,
Organization, etc. Many of our contacts work within the same organizations
(i.e. California State University Monterey Bay, Monterey Bay Aquarium, etc.)
I want to avoid entering the address for these organizations for each contact
we have within that organization. What is the best way to design the
database where I only enter the address for these organizations once, and
link the address to the contact at that organization?
I took a stab at it and created an "Address" table that contains the
addresses for the organizations we have a lot of contacts at. I tried to
create a relationship where our Contacts Table pulls in the foreign key for
the Address Table, but it seems weird because 1) most of our contacts have
their own unique address and aren't part of one of these big organizations,
and 2) my Contacts Table already has Address, City, State, Zip fields, so
linking the contacts with our major organizations to the Address Table, it
seems like I need to pull in the Address, City, State, Zip, etc from the
Address Table for these contacts, which then adds a second new Address, City,
State, Zip fields to our Contacts Table that already exists with these
fields.
Any help on how to simplify this would be appreciated!
Thank you!
Jacqueline
table has fields like Last_Name, First_Name, Address1, City1, State1, Zip1,
Organization, etc. Many of our contacts work within the same organizations
(i.e. California State University Monterey Bay, Monterey Bay Aquarium, etc.)
I want to avoid entering the address for these organizations for each contact
we have within that organization. What is the best way to design the
database where I only enter the address for these organizations once, and
link the address to the contact at that organization?
I took a stab at it and created an "Address" table that contains the
addresses for the organizations we have a lot of contacts at. I tried to
create a relationship where our Contacts Table pulls in the foreign key for
the Address Table, but it seems weird because 1) most of our contacts have
their own unique address and aren't part of one of these big organizations,
and 2) my Contacts Table already has Address, City, State, Zip fields, so
linking the contacts with our major organizations to the Address Table, it
seems like I need to pull in the Address, City, State, Zip, etc from the
Address Table for these contacts, which then adds a second new Address, City,
State, Zip fields to our Contacts Table that already exists with these
fields.
Any help on how to simplify this would be appreciated!
Thank you!
Jacqueline