updating automaticaly a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two tables in my db :table1 and table2. Both has the same structure.
When table1 is manually updated I want to have table2 updated too
automaticaly. Is this possible ?
 
stabilo said:
I have two tables in my db :table1 and table2. Both has the same
structure. When table1 is manually updated I want to have table2
updated too automaticaly. Is this possible ?

It's possible, but why do you have two tables with apparently the same
data? And exactly what are you updating (data or file structure)?
 
First, I would ask why you want 2 identical tables? The db would not be
normalized, and you are already facing the most basic problem with this:

How to make sure all the data is updated, to match...

My recommendation would be to simply reduce the db to a single table.

Sharkbyte
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top