I Have a table that contains Temperature data For a list of 230 Stations The table has a Station ID, a Date column, and an Avg Temp column with data in it. I have added another column to hold the 7 day trailing average, which is simply the average of the past seven days.
Each day when new data comes in I want to update That 7 day trialing avg column with the average. So far I have a select statement to gather the trailing averages for today for each station. Now I need to append the average to the matching station ID and Date.
Here is my code so far:
SELECT [Station ID], GetDate() as Dates, ROUND(AVG([Avg Temp]),1) FROM Actuals
WHERE Dates Between DATEADD(DAY,-7,GETDATE()) AND GETDATE()
GROUP BY [Station ID]
Any Help would be appreciated.
Each day when new data comes in I want to update That 7 day trialing avg column with the average. So far I have a select statement to gather the trailing averages for today for each station. Now I need to append the average to the matching station ID and Date.
Here is my code so far:
SELECT [Station ID], GetDate() as Dates, ROUND(AVG([Avg Temp]),1) FROM Actuals
WHERE Dates Between DATEADD(DAY,-7,GETDATE()) AND GETDATE()
GROUP BY [Station ID]
Any Help would be appreciated.