Jump to content

I need urgent help representing grouped data in a table


gibigbig

Recommended Posts

Here is my database:

 

receipt_id      |      item_id      |      something_here

 

      21                          1                          2

      29                          1                          10

      30                          1                          3

      31                          2                          9

 

What i would like to do is display the above data from my database in a table looking like this:

 

receipt_id      |      item_id      |      total_something_here

 

      21                          1                          15

      31                          2                          9

 

 

in short, i want to show only different item_id with the sum of something_here field for all records where item_id is the same

 

ie 10 + 3 + 2 = 15

in the above example

please help me :D

 

Link to comment
Share on other sites

not working

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in [path]/rpg.php on line 211

 

my table name is rpg_receipt

 

and the field i want the sum of is "amount_remaining"

i edited the query to fit mine and its not working.

 

SELECT item_id, SUM(amount_remaining) AS 'total'  FROM rpg_reciept GROUP BY item_id ORDER BY item_id  WHERE userid = '".$userid."' AND amount_remaining <> 'none'

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.