I'm currently stuck trying to get the average value of groups of n rows using MySQL.
I have a MySQL table (data_conso) composed of columns in the following format : id (int); date(datetime); data(int)
I'd like (in order to make a nice graph without too many points) to split all these values by groups of let's say 100 and then get the average value of each of these groups.
With a bit of search and tinkering, I managed to write the following query :
SET @i := 0;
SELECT
@i:=@i+1 as rownum,
FLOOR(@i/100) AS `datagrp`,
AVG(`tmptbl`.`data`)
FROM (
SELECT `data`
FROM data_conso ORDER BY `date` ASC
) as `tmptbl`
GROUP BY `datagrp`
Which in theory would work (or at least I don't know why it wouldn't) but only returns one value ! What is very strange is if I remove the AVG() function around tmptbl.data, it returns every group as it should, just without the averaged value.
What I don't understand is why AVG(), which is an aggregate function, doesn't use the GROUP BY in order to make its calculations.
I am really frustrated by this issue and any kind of help would really be appreciated. Forgive me for my english and thanks in advance for your answer !
