Options

Synchronizing two tables

poppinspoppins Member Posts: 647
Hi everyone,

I have two tables with the same primary key and many identical boolean fields(same id,same value).
I want that when I delete a record from table1, the boolean in table2 take all the value false.

Example:

record in table1: key=xxx, bool1=true bool2=true

record in table2: key=xxx, bool1=true bool2=true

If I delete the record in table1:

record in table2: key=xxx, bool1=false bool2=false

Is it possible?

Comments

Sign In or Register to comment.