A report I'm working on requires an embedded select as displayed below. What I do to use that in Impromptu, is paste the SQL into the query profile window. The downside is that I lose some functionality inherent to Impromptu since I'm limited to the sql statement. Anyone know of another way to do this?
It goes something like:
select A.column1,
B.column1
from table A,
(select ...
where conditions
and not exists (select ...)) B
where conditions
It goes something like:
select A.column1,
B.column1
from table A,
(select ...
where conditions
and not exists (select ...)) B
where conditions