Ok experts...I've got a table that I am trying to calculate the average of the values in a column. Here is my lookup:
$gameswon = mysql_query("SELECT SUM(P1_Score) AS value_sum FROM tblMatches Where P1_ID LIKE '".$playerid."'");
Any idea how I can determine the average (sum of values / total rows)?
Thanks for your help.