1
What you need is an INNER JOIN.
SELECT Currencies.code, Currencies.name, Currencies.symbol
FROM moedapais
INNER JOIN Currencies ON (Currencies.code = moedapais.code)
INNER JOIN Pais ON (Pais.alpha2Code = moedapais.alpha2Codes)
WHERE alpha2Codes = 'AL';