我找不到任何合适的解释,所以这里是:
我有tableA
和tableB
。
tableA
的字段为column1, column2, column3
。
tableB
的字段为columnA, column1, columnC, columnD, columnE
。
column1
中的 tableA
是主键。 column1
中的tableB
是外键,引用column1
中的tableA
。 column1
中的tableB
ON UPDATE CASCADE
约束。
我的问题是..如果我更改tableA
中每个字段的值,tableB
也会在其字段中获得相同的值吗?
答案 0 :(得分:1)
没办法,它只会更新TableB中的外键。 MySQL中的约束只更新相关列。