G
george
Hi all,
I have this union query:
SELECT t1.price
FROM t1
UNION
SELECT t2.price
FROM t2;
When I run the query it gives me a list of prices from the
two tables (as expected). Now I would like to have a
single sum of all these prices. How do I do this?
Thanks in advance, George.
I have this union query:
SELECT t1.price
FROM t1
UNION
SELECT t2.price
FROM t2;
When I run the query it gives me a list of prices from the
two tables (as expected). Now I would like to have a
single sum of all these prices. How do I do this?
Thanks in advance, George.