how to combine following two queries so that it return the result for both dates separably in the oracle form -oracle report -or excel work sheet
Is this possible to use any functionality in access query that when import the queries to excel it display the info on the same excel worksheet and in different columns .
i need to display the result for each week separately but want to use the same work sheet for this .

*************query1**********
SELECT Telco, Reason, Count(*)
FROM table1
WHERE date between '1/1/2013# And'1/7/2013'
GROUP BY Telco,Reason
ORDER BY Telco;


**********query2***********
SELECT Telco, Reason, Count(*)
FROM table1
WHERE date between '1/8/2013# And'1/13/2013'
GROUP BY Telco,Reason
ORDER BY Telco;