Hi. I have a table with Lead_ID and Date.
I made a query to get total leads per day. This is the query:
SELECT MAIN.Date, Count(MAIN.Date) AS Total
FROM MAIN
GROUP BY MAIN.Date;
The result looks like this:
Date Total
7/16/2003 6
7/17/2003 9
7/18/2003 12
:
What I want to get average leads per day something like:
Total Leads Total Date Counted Average lead per day
55 5 11
I tried to modify above SQL statement, but because of GROUP BY clause, it only gives me aggregated totals per each date like above.
How can I get the result?
Thanks in advance!
I made a query to get total leads per day. This is the query:
SELECT MAIN.Date, Count(MAIN.Date) AS Total
FROM MAIN
GROUP BY MAIN.Date;
The result looks like this:
Date Total
7/16/2003 6
7/17/2003 9
7/18/2003 12
:
What I want to get average leads per day something like:
Total Leads Total Date Counted Average lead per day
55 5 11
I tried to modify above SQL statement, but because of GROUP BY clause, it only gives me aggregated totals per each date like above.
How can I get the result?
Thanks in advance!