Hi,
I'm trying to write a simple query to retrieve an average of fields in one of my tables.
Code:
$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.