Query: Select Countries and Translations

SELECT [Country].[Name], [Language].[Name], CountryName.Name, CountryName.Nationality
from (([Country] Left Join [CountryName]
ON ([Country].[Id] = [CountryName].[CountryId] and [CountryName].[DBId] = 0))
LEFT JOIN [Language]
ON ([CountryName].[LanguageId] = [Language].[Id] and [Language].[DBId] = 0))
where [CountryName].[LanguageId] in (1 , 2, 3)
and [CountryName].[DBId] = 0
order by [Country].[Name], [Language].[Name]