Is there a way to return the sum of two separate queries as in:
select (select sum(price) from items) + (select sum(price) from
widgets))
select 3 + 4 works OK but the parser doesn't like sticking a subquery in
place
of the numbers.
Is there another way to do this?
kyle(at)actarg(dot)com