I have a db schema like following -
(Country table)
| Country | Country Code|
-------------------------
ABC A
BCD B
(Organization Table)
|Organization | Country Code | Organization Code
Org 1 A O1
Org 2 B O2
Org 3 A O3
(Transaction Table)
| Organization | Export(in $) | Import(in $)|
O1 X1 Y1
O2 X2 Y2
O3 X3 Y3
I want the result set to be like this -
| Corridor | Total Export | Total Import |
------------------------------------------
ABC-BCD X1+X2+X3 Y1+Y2+Y3
Corridor column should be the combination of all the countries in the Country table.
How can I form a query to implement this logic? Thanks
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…