I have a couple of queries, detailed below. I\'d like to be able to run one SQL query which returns both counts, is this possible?
1.
select nvl(count(ro
You could use a with statement:
with count1 as ( select ... ), count2 as ( select ... ) select tot1, tot2 from count1, count2