Oracle Developer/2000 Reports
I need to find out how to develop a field for a report that will contain a value determined by adding or subtracting the output of two other fields(queries).
An example would be:
Query 1: select count(1) from A; result is G_count_1 contains count_1
Query 2: select count(1) from B; result is G_count_2 contains count_2
I need count_1 added to count_2 and the answer in F_3.
How do I do this?