Form that updates table and adds info to another table?

fsmith

Registered User.
Local time
Today, 04:01
Joined
Oct 31, 2012
Messages
13
How does one make a form update the data in one table and add a line of data on another table?
 
for this you need normalization of data, study more about how to normalize data, relationship and data integrity.
 
Thank you for heading me in a direction.
 
Khalid

Thank you so much for pointing me in the right direction. I would have made a mess! I am restructuring my tables.
 
you are welcome fsmith,

just keep in mind some basic rules always
- avoid duplicate information i.e information should not be repeated while designing your tables
- every table should have primary key (even its not necessary, but good for relationship)
- keep primary and foreign key concept in mind during normalization.
- data integration is important, no orphan record should exist in related table.
- cascade update in related tables are important, cascade update, update the related key value in the primary table.
- normalize your tables upto 2NF (second normal form)
- good database design structure enhance data retrieval and processing in queries and forms.
 

Users who are viewing this thread

Back
Top Bottom