Hi All,
I have a long survey that will be passed to a database. To Normalize it I have broken the sections as separate tables. So, for the initial table I have "CustomerID" as the Primary Key and corresponding "CustomerID" fields in the other 16 tables as 1:1 Relationships. At first the other tables had CustomerID as the Primary Key, but I had to remove them as that didn't work when entering the data. So I still have the 1:1 relationships but only the initial table has a Primary Key, which makes sense.
Now I want to combine all the information, but I am stuck. In my mind, I'm thinking that I want the Customer ID in the initial Table automatically passed on to the rest of the tables, but I don't think that's how you're suppose to do it as far as Querying is concerned.
So my question is how do I successfully combine all the information under the same CustomerID while only entering the CustomerID once?
Any help would be greatly appreciated. Thanks.