hi,
i've got a little problem. i've written a sqlstatement using an exists clause.
ex.
select c.a, o.b
from .order o left outer join customer c on c.id=o.id
where not EXISTS
(select u.c
from uitval u
where u.x=o.x)
the error it returns says that the subquery can return more than one value (correct) without having the EXISTS keyword in the main query (incorrect, i have the exists keyword after where not...). anyone any idea how to write the query with the exists clause in the sql expression field?
t.i.a.,
erik.
i've got a little problem. i've written a sqlstatement using an exists clause.
ex.
select c.a, o.b
from .order o left outer join customer c on c.id=o.id
where not EXISTS
(select u.c
from uitval u
where u.x=o.x)
the error it returns says that the subquery can return more than one value (correct) without having the EXISTS keyword in the main query (incorrect, i have the exists keyword after where not...). anyone any idea how to write the query with the exists clause in the sql expression field?
t.i.a.,
erik.