我只能用一个例子来解释这一点。
我有 2 个表 ( table1
and table2
),每个表都包含fielda
fieldb
fieldc
and fieldd
。
我想要
UPDATE table2
SET table2.fieldc = table1.fieldc,
table2.fieldd = table1.fieldd
WHERE table2.fielda = table1.fielda
AND table2.fieldb = table1.fieldb