I have 2 views, A and B:
+--------------+------------------+
| Field | Type |
+--------------+------------------+
| id | int(11) unsigned |
| vat_perc | numeric |
| vat_amount | numeric |
| project_id | numeric |
| ... |
+--------------+------------------+
I want a third view C which should basically have a similar structure but in the vat_amount field should contain the sum of all vat_amounts grouped by vat_perc and project_id from the two previous views.
C:
+--------------+------------------+
| Field | Type |
+--------------+------------------+
| id | int(11) unsigned |
| vat_perc | numeric |
| vat_amount | numeric |
| project_id | numeric |
| ... |
+--------------+------------------+
For example, let's say A contains
+--------------+------------------+------------------+
| project_id | vat_perc | vat_amount |
+--------------+------------------+------------------+
| 1 | 4% | 10 |
| 1 | 5% | 15 |
| 2 | 5% | 15 |
| 3 | 4% | 10 |
| | | |
+--------------+------------------+------------------+
and B contains
+--------------+------------------+------------------+
| project_id | vat_perc | vat_amount |
+--------------+------------------+------------------+
| 3 | 5% | 10 |
| 2 | 4% | 15 |
| 2 | 5% | 15 |
| 1 | 4% | 15 |
| | | |
+--------------+------------------+------------------+
Then table C should contain
+--------------+------------------+------------------+
| project_id | vat_perc | vat_amount |
+--------------+------------------+------------------+
| 1 | 4% | 25 |
| 1 | 5% | 15 |
| 2 | 4% | 15 |
| 2 | 5% | 30 |
| 3 | 4% | 10 |
| 3 | 5% | 10 |
| | | |
+--------------+------------------+------------------+
(I hope I made this clear enough, if you want an expanded example I could of course make it 'bigger')
Thanks
use