P
Philip Lo
Hi,
I have a table with 3 columns, col 1 is date time, col 2 is text, and col 3
is number. Is it possible to have one single query that calculates the
average of 3 for col 3 (selection of 3 rows is based on those with most
recent time stamp in col 1) group by col 2 ?
Example:
------------------
col 1, col 2, col 3
------------------
1 Oct 2005, A01, 20;
2 Oct 2005, A01, 25;
3 Oct 2005, A01, 30;
4 Oct 2005, A01, 35;
5 Oct 2005, A02, 40;
6 Oct 2005, A02, 45;
7 Oct 2005, A02, 50;
8 Oct 2005, A02, 55;
After query:
-------------------------------------------
Average of most recent 3 result, col 2
-------------------------------------------
(25+30+35)/3=30, A01;
(45+50+55)/3=50, A02;
Thanks....
regards,
Philip
I have a table with 3 columns, col 1 is date time, col 2 is text, and col 3
is number. Is it possible to have one single query that calculates the
average of 3 for col 3 (selection of 3 rows is based on those with most
recent time stamp in col 1) group by col 2 ?
Example:
------------------
col 1, col 2, col 3
------------------
1 Oct 2005, A01, 20;
2 Oct 2005, A01, 25;
3 Oct 2005, A01, 30;
4 Oct 2005, A01, 35;
5 Oct 2005, A02, 40;
6 Oct 2005, A02, 45;
7 Oct 2005, A02, 50;
8 Oct 2005, A02, 55;
After query:
-------------------------------------------
Average of most recent 3 result, col 2
-------------------------------------------
(25+30+35)/3=30, A01;
(45+50+55)/3=50, A02;
Thanks....
regards,
Philip