Comparing the Contents of Two Tables: create table a(c1 int,c2 varchar(3),c3 varchar(3)) create table b(c1 int,c2 varchar(3),c3 varchar(3))insert into a values(1,'x','y')insert into a values(2,'xx','y')insert into a values(3,'x','y')insert into b values(1,'x','y')insert into b values(2,'x','y')insert into b values(3,'x','yy')select * from a C1 C2 C3----- -- -- 1 x y 2 xx y 3 x yselect * from b C1 C2 C3----- -- -- 1 x y 2 x y 3...