Jump to content

Adding all the results from all the fields.


u214

Recommended Posts

Hello guys. Let's say I have my DB set up as: "SELECT * FROM playerinfo WHERE kills > 0"

 

Playerinfo has information about players, each player has kills. How to add up ALL the kills FROM ALL players?

 

Thanks.

Link to comment
Share on other sites

What you are looking for is the SUM mysql function. For example

 

$res = mysql_query("SELECT SUM(kills) as num_kills FROM playerinfo WHERE kills > 0");
$row = mysql_fetch_array($res);
echo "There are : ". $row['num_kills']." total kills";

 

EDIT: bah sniped, but ill post anyways, as I have an example

Link to comment
Share on other sites

Hello. Thanks for the feedback.

 

I try doing it this way:

$total_kills = mysql_query("SELECT SUM(kills) FROM playerinfo", $connect);
echo $total_kills;

 

That outputs: "Resource id #5"

 

mysql_query only gives you the id location in the database. You have to apply that to an array to actually pull data out of it. Use:

 

$total_kills=mysql_fetch_array($total_kills)

 

directly after

$total_kills = mysql_query("SELECT SUM(kills) FROM playerinfo", $connect);

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.