I am trying to learn relational database design and usage. I get the normalization and the multiple tables part. I am begining to understand getting data out form multiple tables.
But, what I still don't get is how to insert the data from one form into multiple tables. Who knows... maybe I'm not getting something else too! lol
I have a form that will require 222 fields. Yes, yikes. So, naturally, I'm setting it up as a relational database. I've ended up with 19 tables. The form does not flow in the same order as the tables. For instance, say I have customer_info, claim_info & damage_info. The form does not first gather the customer info, then the claim info, then the damage info in a nice orderly fashion. The fields for each of the 19 tables are "scattered" throughout the form.
This being said, do I need to create 19 insert commands each with the corresponding fields?
I can find all sorts of tutorials on designing the db, extracting the info, but not one on how to get the info in.
Thanks for your help!
Kathy