I have an access 2000 database with a query that qalculates a distinct player score average by emailID.
-------
SELECT DISTINCTROW Rounds.eMailID, Avg(Rounds.Score) AS [Avg Of Score], Count(*) AS [Count Of Rounds]
FROM Rounds
GROUP BY Rounds.eMailID;
--------
I need to write this average to (Players) Table in the pAverage Column of each (EmailAdress)
Your Help is appreciated
-------
SELECT DISTINCTROW Rounds.eMailID, Avg(Rounds.Score) AS [Avg Of Score], Count(*) AS [Count Of Rounds]
FROM Rounds
GROUP BY Rounds.eMailID;
--------
I need to write this average to (Players) Table in the pAverage Column of each (EmailAdress)
Your Help is appreciated