Hi Guys,
In our report requirement we have below scenario:
Select table1.A, table1.B, table2.c
from table1, (select table3.X from table3
MINUS
select table4.x from table4) table2
where table1.A=table2.X
So now we have 3 option to implement this in our report.
- Create derived table at universe level.
- Create custom query at report level.
- Can we use minus in subquery at report level.
chetan86 (BOB member since 2011-01-18)