alternate SQL without Exists clause [message #371095] |
Fri, 25 August 2000 04:26 |
suriyan
Messages: 3 Registered: August 2000
|
Junior Member |
|
|
select table1.field1
from table1
where NOT EXISTS (select table2.field1
from table2
where table2.field1 = table1.field1)
can anyone suggest an alternative..without Using IN/EXISTS Clauses, preferably without using SubQueries also.
Thanks
|
|
|
|
Re: alternate SQL without Exists clause [message #371106 is a reply to message #371095] |
Mon, 28 August 2000 00:38 |
suriyan
Messages: 3 Registered: August 2000
|
Junior Member |
|
|
i am trying to execute this SQL via an ODBC driver, the feature of this driver is very limited, i cannot write any Correlated Subqueries.
i need to rewrite this SQL, without any subqueries, is there anyother ALTERNATIVE Logic..
|
|
|
|
|
|