so i've got two fields in two tables
us them
entity|currency|amount entity|currency|amount
purple| usd | 7.00 purple|usd |7.00
purple| usd | 2.00 purple|usd |1.00
purple| huf | 1.00
Entity has a company name and currency is a currency code like usd or huf and amount is a dollar amount.
right now i'm joining them on entity and currency and summing the instances of that currency for the particular entity then creating another column in the result to find the difference.
so right now, the way i'm doing it, i'll get
entity| currency | ussum | themsum | differ
purple| usd | 9.00 | 8.00 | 1.00
But it will omit the purple huf because it doesn't exist on the other table. i'm trying to figure out how to get all the currencies that don't exist on either side even if they don't exist on the other side.