Log in

View Full Version : Averaging MySQL fields


Jolten
10-16-2004, 05:10 PM
Hi,

I'm trying to write a simple query to retrieve an average of fields in one of my tables.


$average = $DB_site->query("SELECT AVG(points) FROM usrPoints WHERE atoContId = 662");


I've tried just about everything I can think of or find as far as searching the 'net. The query simply returns a resource ID.

Can anyone help me set the query to actually return a value?

Thanks.

Andreas
10-16-2004, 05:33 PM
Maybe


$average = $DB_site->query_first("SELECT AVG(points) AS avgpoints FROM " . TABLE_PREFIX . "usrPoints WHERE atoContId = 662");


and the use $average['avgpoints'] ?

Jolten
10-16-2004, 05:37 PM
I don't need the table prefix for my database so I removed that.

But using $average['avgpoints'] does work! Thanks!!!

Andreas
10-16-2004, 05:43 PM
I also don't need that in my database.
But it is good coding style to follow vB3 coding standards.
And it makes life easier if you ever have to switch your host(and then maybe have to use prefixes)

Jolten
10-16-2004, 08:15 PM
True. :) But if I were to ever need prefixes it would be a week long undertaking to fix the other queries in my custom pages as well. :)

Thanks so much for the assist Kirby. I owe you one.