Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a table with invoices:

invoice_num, customer_ID, usd
1              A          15.2
2              B           3.6
3              A         105.1
4              C           6.0

I need a report showing all the records (invoices) and adding a subtotal per customer. I know how to do it if I just show the total per customer (with GROUP BY customer_ID and WITH ROLLUP) but I need to keep the details, so I can't group the lines. The desired output is:

invoice_num  customer_ID   usd
1              A          15.2
3              A         105.1
Total customer A         120.3
2              B           3.6
Total customer B           3.6
4              C           6.0
Total customer C           6.0
Total customers          129.9

Thanks,

share|improve this question

1 Answer

up vote 2 down vote accepted

Also group on invoice_num:

SELECT   invoice_num, customer_ID, SUM(usd)
FROM     my_table
GROUP BY customer_ID, invoice_num WITH ROLLUP

See it on sqlfiddle.

share|improve this answer
Crystal clear: thanks. – jm_ Feb 9 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.