Suppose I have the following tables:
countryregion
CountryRegionCode | Name
------------------------------------------
AD | Andorra
AE | United Arab Emirates
AR | Argentina
------------------------------------------
currency
CurrencyCode | Name
------------------------------------------
AED | Emirati Dirham
ARS | Argentine Peso
ALL | Lek
------------------------------------------
countryregioncurrency
CountryRegionCode | CurrencyCode
------------------------------------------
AE | AED
AR | ARS
------------------------------------------
How would I combine them such that the rows are interconnected like below:
Name | Name
------------------------------------------
United Arab Emirates | Emirati Dirham
Argentina | Argentino Peso
------------------------------------------