Hi,
I am trying to idenitfy duplicate records in two tables, the tables share exactly the same structure but there is no primary key. Is there a more efficient way to do this than below?
select * from T1 where (cola,colb,colc.........,colx) not in
(select cola,colb,colc,..............colx) from t2);
Thanks for any help
Gareth
I am trying to idenitfy duplicate records in two tables, the tables share exactly the same structure but there is no primary key. Is there a more efficient way to do this than below?
select * from T1 where (cola,colb,colc.........,colx) not in
(select cola,colb,colc,..............colx) from t2);
Thanks for any help
Gareth