Jump to content

Sum of values in php


onlyican

Recommended Posts

Hey
My brain is dead today, I had too much sleep last night, I hit 5 hours. (This is a lot to me)

Anyway

I have a Mysql Table
In that table I have a field called amount, which is a double
and a field called aff, which is a number not unique, but refers to the id_num of the affiliates

Anyway

I am running a query to find out who is owed money, and how much

This is wha I have so far

$query2 = "SELECT * FROM sales WHERE paid = 'n' GROUP BY aff";

The problem is this only gives me one value from the amount, it is not adding them up

I can run another query
$total_amount = "SELECT SUM(amount) FROM sales WHERE paid = 'n' AND aff = '".$row2["aff"]."'";

But is there a better way to do all this

I am thinking off the amount of queries that might run on one page

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.