Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need help writing select statement that will do an average of the most recent 52 rows of data.

If there is less then 52 rows it will only do the avg of how many rows there are.

I know the avg function in SQL will skip the null...but i got this far.

SELECT AVG(E.Interest)
from InterestRates E
Where Interest in (select COUNT(Interest) <=52 from InterestRates)

i wanted for each row of data to go back and calculate the avg 52 rows thanks

share|improve this question
Please define what you mean by the most recent 52 rows. – Marek Grzenkowicz Sep 20 '10 at 14:54
the last 52 records entered into table – WingMan20-10 Sep 20 '10 at 14:58
1  
And how do you know what the last 52 records are? Do you have an identity column, or some sort of time stamp? – LittleBobbyTables Sep 20 '10 at 15:08
Yes I have identity – WingMan20-10 Sep 20 '10 at 15:45

2 Answers

up vote 6 down vote accepted

Try this:

SELECT AVG(Interest) AS AvgInterest
FROM (
    SELECT TOP 52 E.Interest
    FROM InterestRates E
    ORDER BY DateEntered DESC
) Top52Interests

EDIT

Based on comments you can order by the identity instead:

SELECT AVG(Interest) AS AvgInterest
FROM (
    SELECT TOP 52 E.Interest
    FROM InterestRates E
    ORDER BY YourIdentityField DESC
) Top52Interests

The nice thing is this query will work in SQL 2000 as well.

share|improve this answer

SELECT AVG(E.Interest) FROM
InterestRates E WHERE ROWNUMBER() <= 52 ORDER BY whatever DESC;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.