I have two queries that run fairly quickly, and would like the results of each to appear in a single grid, without using a temp table.
Here's how I'm doing the selection ...
SELECT AcctNo, AcctName, SUM(TransAmt) AS Table1Total
FROM Table1
WHERE TransDate BETWEEN '4/1/08' AND '5/1/08'
GROUP BY...