我想在这里问一个问题...让我解释一下...这里我有 3 个表,1. transaction_table 2. transaction_detail 3. item
不,我的问题是我想知道本月(2013-01)的商品销售额,例如,这是我的表格结构......
1 事务表
--------------------------
idTransaction | date | idUser | idCustomer | total | NOSC
--------------------------------------------------------------------
1 | 2013-01-01 | 3 | 4 | 500000 | 1CO
2 | 2013-01-01 | 3 | 5 | 450000 | 2CO
3 | 2013-01-01 | 3 | 6 | 250000 | 3CO
2 交易细节
-----------------------------------------------------------------
idTransaction | idItem | qty | price
----------------------------------------
1 | 1 | 2 | 250000
2 | 2 | 1 | 250000
2 | 3 | 1 | 200000
3 | 1 | 1 | 250000
3 项目表
idItem | Name Item
---------------------------------------
1 | glass
2 | Medicine A
3 | Medicine B
4 客户
idCustomer | Name Customer
--------------------------------------
4 | Abuh
5 | Abeh
6 | ABooh
所以基于这些表我想得到这样的数据......
Name Item | Nosc | Customer | Sold Quantity | @ Price | Total
---------------------------------------------
Glass | 1CO | Abuh |2 | 250000 | 500000
Glass | 3CO | ABooh |1 | 250000 | 250000
Medicine A| 2CO | Abeh |1 | 250000 | 250000
Medicine B| 2CO | Abeh |1 | 200000 | 200000
任何人都可以帮助我吗??