Jump to content

averaging help


conor.higgins

Recommended Posts

Hi,

 

can anyone help me in getting the average of the sum of a number of tables in my DB?

I have the SELECT code grabbing what I need, and all the data is numeric so I am wondering whether it is possible to grab the data and then perform an average on the information contained within it.

 

Conor

Link to comment
https://forums.phpfreaks.com/topic/203797-averaging-help/
Share on other sites

Well, we could guess what the data is. Or, how you want the averaging to happen.  Simple as it gets.

$count = 0;
while($row = mysql_fetch_assoc($namelessTablewithWhoKnowsWhatKindOfData)) {
//How many entries are there.
++$count;
//The sum of the column you want averaged.
$sum += $row['columnIwantToaverage'];
}
$average = round($sum / $count);

 

Of course, if it was a little clearer, then we could use some MySQL functions to speed up the process.

Link to comment
https://forums.phpfreaks.com/topic/203797-averaging-help/#findComment-1067449
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.