V
Valentine
Select tableA.Field1, tableA.attribute
from tableA join TableB on tableA.Field1 <> tableB.Field1
--OR--
SELECT Table1.Field1, Table1.attribute
FROM Table1 where field1 not in (select field1 from
table2);
Both will work. I believe first one is higher performing
from tableA join TableB on tableA.Field1 <> tableB.Field1
--OR--
SELECT Table1.Field1, Table1.attribute
FROM Table1 where field1 not in (select field1 from
table2);
Both will work. I believe first one is higher performing