我有 3 个表product
:customer
和transaction
。
产品:
id_product price
1 1000
2 2000
顾客:
id_customer name
1 Tom
2 Jack
交易:
id_transaction id_product id_customer qty date
1 1 1 10 2013-02-21
2 2 1 50 2013-02-21
3 1 2 15 2013-02-21
我想达到这个结果:
id_customer name total_transaction purchase_qty subtotal
1 Tom 2 60 110000
2 Jack 1 15 15000
如何使用 MySQL 中的查询获得该结果?