0

我有两个具有相同字段的表。我想比较其中一个字段并在第 3 和第 4 个表中移动匹配和不匹配的值。谁能帮我这个?

4

1 回答 1

0

假设表 A 和表 B。

insert into table C values(select colA from A,B where colA=colB)
insert into table D values(select colA from A,B where colA!=colB)
于 2012-06-05T14:34:59.837 回答