Re: mixing GROUP BY, AVG and COUNT

2004-06-06 Thread Terry Riley
--Original Message- I have a table where the date a record was added is recorded in the date column. I can get count of how many records were entered on each day by doing this SELECT COUNT(*) FROM table GROUP BY date; I can get a total number of records by doing

mixing GROUP BY, AVG and COUNT

2004-06-02 Thread Chris W
I have a table where the date a record was added is recorded in the date column. I can get count of how many records were entered on each day by doing this SELECT COUNT(*) FROM table GROUP BY date; I can get a total number of records by doing SELECT COUNT(*) FROM table but how do I find the

Re: mixing GROUP BY, AVG and COUNT

2004-06-02 Thread Michael Stassen
How about SELECT @total:=COUNT(*) FROM table; SELECT date, COUNT(*)/@total AS average FROM table GROUP BY date; Michael Chris W wrote: I have a table where the date a record was added is recorded in the date column. I can get count of how many records were entered on each day by doing