C
carl
I have 2 queries:
Query1
SELECT (count(TradeVolume)/2) AS TotalVolume
FROM HILLTOP;
Query2
SELECT (sum(TradeVolume)/2) AS TotalVolume
FROM HILLTOP;
Trying to combine the 2 and get output like this:
Total_Volume:_Result of Query1
Total_Trades:_Result of Query2
Thank You in Advance.
Query1
SELECT (count(TradeVolume)/2) AS TotalVolume
FROM HILLTOP;
Query2
SELECT (sum(TradeVolume)/2) AS TotalVolume
FROM HILLTOP;
Trying to combine the 2 and get output like this:
Total_Volume:_Result of Query1
Total_Trades:_Result of Query2
Thank You in Advance.