Magento加入两张桌子

时间:2013-11-20 10:40:30

标签: mysql magento-1.7

我是magento的新人。

我正在创建自定义的megento报告。我决定加入两个表rev_table和emp_table。

emp_id | datefield           | emp_name | salary |cpf   | other_benefits
1      | 2013-11-12 00:00:00 | abc      | 18000  | 2000 | 3000
2      | 2013-11-20 00:00:00 | test1    | 20000  | 1000 | 1000
3      | 2013-11-21 00:00:00 | test     | 18000  | 2000 | 2000
4      | 2013-12-11 00:00:00 | demo     | 15000  | 3000 | 2000
5      | 2013-12-20 00:00:00 | ash      | 8000   | 5000 | 3000
6      | 2013-12-24 00:00:00 | test1    | 18000  | 1000 | 500

revenue_id | datefield           | revenue | rental | repair | recruitment |wages
1          | 2013-12-24 07:02:00 | 200     | 22     | 23     | 546         |
2          | 2013-11-19 01:01:00 | 456     | 56     | 56     | 565         |
3          | 2013-10-09 00:00:00 | 500     | 565    | 564    | 56          |
4          | 2013-11-13 00:00:00 | 900     | 435    | 345    | 5           |

我想在magento的rev_table报告中显示1个月的员工表总数。例如,雇员11月份的总工资是(67000)。这将显示为11月份收入报告中的新栏目。

那么结果应该是

revenue_id | datefield           |  revenue | rental | repair | recruitment | wages     <br/>
2          | 2013-11-19 01:01:00 |  456     | 56     | 56     | 565         | 67000 <br/>
4          | 2013-11-13 00:00:00 |  900     | 435    | 345    | 5           |

请帮我解释一下如何在magento集合中添加联接并在报表网格中添加coloume。

由于

0 个答案:

没有答案