I
icccapital
Is it possible to perform a multiple column "not in" query in access?
I created the query
select * from climktvaluefromgroups c where (c.group, c.invdate,
c.marketvalue, c.clicode) not in (select t.group, t.invdate, t.marketvalue,
t.clicode from tempclimkt t) and I got the error:
You have written a subquery that can return more than one field without
using the exists reserved word in the main query's from clause.
Is this not possible?
I created the query
select * from climktvaluefromgroups c where (c.group, c.invdate,
c.marketvalue, c.clicode) not in (select t.group, t.invdate, t.marketvalue,
t.clicode from tempclimkt t) and I got the error:
You have written a subquery that can return more than one field without
using the exists reserved word in the main query's from clause.
Is this not possible?